type github.com/evanw/esbuild/internal/js_ast.Symbol

14 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1380: type Symbol struct {
		js_ast.go#L1464: func (s *Symbol) SlotNamespace() SlotNamespace {
		js_ast.go#L1568: 	Outer [][]Symbol
		js_ast.go#L1572: 	return SymbolMap{make([][]Symbol, sourceCount)}
		js_ast.go#L1575: func (sm SymbolMap) Get(ref Ref) *Symbol {
		js_ast.go#L1601: 	Symbols     []Symbol

	github.com/evanw/esbuild/internal/bundler
		linker.go#L419: 			fileSymbols := append([]js_ast.Symbol{}, repr.ast.Symbols...)
		linker.go#L534: 		*runtimeSymbols = append(*runtimeSymbols, js_ast.Symbol{
		linker.go#L1454: 		*inner = append(*inner, js_ast.Symbol{Kind: js_ast.SymbolOther, OriginalName: name, Link: js_ast.InvalidRef})
		linker.go#L1562: 				*inner = append(*inner, js_ast.Symbol{

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L54: 	symbols                  []js_ast.Symbol
		js_parser.go#L1189: 	p.symbols = append(p.symbols, js_ast.Symbol{

	github.com/evanw/esbuild/internal/renamer
		renamer.go#L220: func AssignNestedScopeSlots(moduleScope *js_ast.Scope, symbols []js_ast.Symbol) (slotCounts js_ast.SlotCounts) {
		renamer.go#L250: func assignNestedScopeSlotsHelper(scope *js_ast.Scope, symbols []js_ast.Symbol, slot js_ast.SlotCounts) js_ast.SlotCounts {