You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`testdata/compile/json/json_camel_case_conflict.proto:1:1:The JSON camel-case name of field "helloworld" conflicts with field "helloWorld". This is not allowed in proto3.`,
91
+
`testdata/compile/json/json_camel_case_conflict.proto:7:9:The JSON camel-case name of field "helloworld" conflicts with field "helloWorld". This is not allowed in proto3.`,
directoryDoesNotExistRegexp=regexp.MustCompile("^(.*): warning: directory does not exist.$")
58
62
fileNotFoundRegexp=regexp.MustCompile("^(.*): File not found.$")
59
63
// protoc outputs both this line and fileNotFound, so we end up ignoring this one
60
64
// TODO figure out what the error is for errors in the import
61
-
importNotFoundRegexp=regexp.MustCompile("^(.*): Import (.*) was not found or had errors.$")
62
-
noSyntaxSpecifiedRegexp=regexp.MustCompile(`No syntax specified for the proto file: (.*)\. Please use`)
65
+
importNotFoundRegexp=regexp.MustCompile("^(.*): Import (.*) was not found or had errors.$")
66
+
noSyntaxSpecifiedRegexp=regexp.MustCompile(`No syntax specified for the proto file: (.*)\. Please use`)
67
+
// protoc started printing line and column information in 3.8.0
68
+
jsonCamelCase380Regexp=regexp.MustCompile(`^(.*):(\d+):(\d+): (The JSON camel-case name of field.*)$`)
63
69
jsonCamelCaseRegexp=regexp.MustCompile("^(.*): (The JSON camel-case name of field.*)$")
64
70
isNotDefinedRegexp=regexp.MustCompile("^(.*): (.*) is not defined.$")
65
71
seemsToBeDefinedRegexp=regexp.MustCompile(`^(.*): (".*" seems to be defined in ".*", which is not imported by ".*". To use it here, please add the necessary import.)$`)
0 commit comments