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
returnnil, fmt.Errorf("internal error: caller syntax positions are inconsistent with file content (did you forget to use FileSet.PositionFor when computing the file name?)")
103
103
}
104
104
105
-
// TODO(adonovan): use go1.21's ast.IsGenerated.
106
105
// Break the string literal so we can use inlining in this file. :)
107
-
ifbytes.Contains(caller.Content, []byte("// Code generated by "+"cmd/cgo; DO NOT EDIT.")) {
106
+
ifast.IsGenerated(caller.File) &&
107
+
bytes.Contains(caller.Content, []byte("// Code generated by "+"cmd/cgo; DO NOT EDIT.")) {
108
108
returnnil, fmt.Errorf("cannot inline calls from files that import \"C\"")
0 commit comments