(location *ast.Node)
| 924 | } |
| 925 | |
| 926 | func isDefaultBindingContext(location *ast.Node) bool { |
| 927 | return location.Kind == ast.KindSourceFile || ast.IsAmbientModule(location) |
| 928 | } |
| 929 | |
| 930 | func (b *NodeBuilderImpl) getNameOfSymbolFromNameType(symbol *ast.Symbol) string { |
| 931 | if b.ch.valueSymbolLinks.Has(symbol) { |
nothing calls this directly
no test coverage detected