const github.com/evanw/esbuild/internal/js_ast.SymbolOther

28 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1311: 	SymbolOther

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1454: 		*inner = append(*inner, js_ast.Symbol{Kind: js_ast.SymbolOther, OriginalName: name, Link: js_ast.InvalidRef})
		linker.go#L1563: 					Kind:         js_ast.SymbolOther,

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L1529: 		ref = p.newSymbol(js_ast.SymbolOther, name)
		js_parser.go#L2037: 				methodRef := p.newSymbol(js_ast.SymbolOther, name[1:]+suffix)
		js_parser.go#L2902: 			name = &js_ast.LocRef{Loc: p.lexer.Loc(), Ref: p.newSymbol(js_ast.SymbolOther, p.lexer.Identifier)}
		js_parser.go#L3984: 			decls := p.parseAndDeclareDecls(js_ast.SymbolOther, opts)
		js_parser.go#L4252: 		if (kind == js_ast.SymbolOther || kind == js_ast.SymbolConst) && p.lexer.IsContextualKeyword("let") {
		js_parser.go#L5157: 				defaultName := js_ast.LocRef{Loc: defaultLoc, Ref: p.newSymbol(js_ast.SymbolOther, p.source.IdentifierName+"_default")}
		js_parser.go#L5558: 					ref := p.newSymbol(js_ast.SymbolOther, "e")
		js_parser.go#L5575: 				kind := js_ast.SymbolOther
		js_parser.go#L5885: 			stmt.NamespaceRef = p.newSymbol(js_ast.SymbolOther, name)
		js_parser.go#L6278: 	ref := p.newSymbol(js_ast.SymbolOther, optionalName)
		js_parser.go#L8007: 		s.NamespaceRef = p.newSymbol(js_ast.SymbolOther, name)
		js_parser.go#L8015: 			ref := p.newSymbol(js_ast.SymbolOther, name)
		js_parser.go#L8025: 		s.NamespaceRef = p.newSymbol(js_ast.SymbolOther, name)
		js_parser.go#L8976: 		classNameRef = p.newSymbol(js_ast.SymbolOther, "this")
		js_parser.go#L12762: 			ref := p.newSymbol(js_ast.SymbolOther, js_ast.GenerateNonUniqueNameFromPath(file.Path))
		js_parser.go#L12770: 					ref := p.newSymbol(js_ast.SymbolOther, alias)
		js_parser.go#L12895: 		p.importMetaRef = p.newSymbol(js_ast.SymbolOther, "import_meta")
		js_parser.go#L13006: 	namespaceRef := p.newSymbol(js_ast.SymbolOther, "import_"+js_ast.GenerateNonUniqueNameFromPath(path))
		js_parser.go#L13140: 	wrapperRef := p.newSymbol(js_ast.SymbolOther, "require_"+p.source.IdentifierName)
		js_parser_lower.go#L365: 				argRef := p.newSymbol(js_ast.SymbolOther, fmt.Sprintf("_%d", i))
		js_parser_lower.go#L390: 					argRef := p.newSymbol(js_ast.SymbolOther, fmt.Sprintf("_%d", len(*args)))
		js_parser_lower.go#L421: 			argRef := p.newSymbol(js_ast.SymbolOther, "key")
		js_parser_lower.go#L2155: 			captureRef := p.newSymbol(js_ast.SymbolOther, p.symbols[shadowRef.InnerIndex].OriginalName)
		js_parser_lower.go#L2277: 		ref := p.newSymbol(js_ast.SymbolOther, "__super")
		ts_parser.go#L801: 			value.Ref = p.declareSymbol(js_ast.SymbolOther, value.Loc, js_lexer.UTF16ToString(value.Name))