Lines Matching refs:errs
79 file, errs := parser.Parse(filename, r, parser.NewScope(nil))
80 if len(errs) > 0 {
81 for _, err := range errs {
84 return fmt.Errorf("%d parsing errors", len(errs))
87 modified, errs := findModules(file)
88 if len(errs) > 0 {
89 for _, err := range errs {
127 func findModules(file *parser.File) (modified bool, errs []error) {
135 errs = append(errs, newErrs...)
143 return modified, errs
147 file *parser.File) (modified bool, errs []error) {
170 m, errs := processParameter(prop.Value, targetedProperty.String(), moduleName, file)
172 return modified, errs
223 file *parser.File) (modified bool, errs []error) {