(token ast.Kind)
| 6416 | } |
| 6417 | |
| 6418 | func isReservedWord(token ast.Kind) bool { |
| 6419 | return ast.KindFirstReservedWord <= token && token <= ast.KindLastReservedWord |
| 6420 | } |
| 6421 | |
| 6422 | func attachFileToDiagnostics(diagnostics []*ast.Diagnostic, file *ast.SourceFile) []*ast.Diagnostic { |
| 6423 | for _, d := range diagnostics { |
no outgoing calls
no test coverage detected