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

59 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L246: type LocRef struct {
		js_ast.go#L313: 	Name         *LocRef
		js_ast.go#L336: 	Name         *LocRef
		js_ast.go#L958: 	DefaultName LocRef
		js_ast.go#L1005: 	Name     LocRef
		js_ast.go#L1012: 	Name     LocRef
		js_ast.go#L1029: 	Name LocRef
		js_ast.go#L1123: 	DefaultName       *LocRef
		js_ast.go#L1157: 	Label *LocRef
		js_ast.go#L1161: 	Label *LocRef
		js_ast.go#L1212: 	Name     LocRef

	github.com/evanw/esbuild/internal/bundler
		linker.go#L956: 				items = append(items, js_ast.ClauseItem{Name: js_ast.LocRef{Ref: export.ref}, Alias: alias})
		linker.go#L988: 					items = append(items, js_ast.ClauseItem{Name: js_ast.LocRef{Ref: item.ref}, Alias: item.exportAlias})
		linker.go#L1461: 				DefaultName: js_ast.LocRef{Loc: value.Loc, Ref: ref},
		linker.go#L1614: 					Name:  js_ast.LocRef{Ref: tempRef},
		linker.go#L1647: 					Name:  js_ast.LocRef{Ref: export.ref},

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L113: 	importItemsForNamespace map[js_ast.Ref]map[string]js_ast.LocRef
		js_parser.go#L234: 	relocatedTopLevelVars []js_ast.LocRef
		js_parser.go#L2251: 	var name *js_ast.LocRef
		js_parser.go#L2259: 		name = &js_ast.LocRef{Loc: p.lexer.Loc()}
		js_parser.go#L2896: 		var name *js_ast.LocRef
		js_parser.go#L2902: 			name = &js_ast.LocRef{Loc: p.lexer.Loc(), Ref: p.newSymbol(js_ast.SymbolOther, p.lexer.Identifier)}
		js_parser.go#L4329: 		name := js_ast.LocRef{Loc: aliasLoc, Ref: p.storeNameInRef(alias)}
		js_parser.go#L4342: 			name = js_ast.LocRef{Loc: p.lexer.Loc(), Ref: p.storeNameInRef(originalName)}
		js_parser.go#L4390: 		name := js_ast.LocRef{Loc: aliasLoc, Ref: p.storeNameInRef(alias)}
		js_parser.go#L4591: func (p *parser) parseFn(name *js_ast.LocRef, data fnOrArrowDataParse) (fn js_ast.Fn, hadBody bool) {
		js_parser.go#L4742: 	var name *js_ast.LocRef
		js_parser.go#L4760: 		name = &js_ast.LocRef{Loc: nameLoc, Ref: js_ast.InvalidRef}
		js_parser.go#L4796: func (p *parser) parseClass(classKeyword logger.Range, name *js_ast.LocRef, classOpts parseClassOpts) js_ast.Class {
		js_parser.go#L4894: func (p *parser) parseLabelName() *js_ast.LocRef {
		js_parser.go#L4899: 	name := js_ast.LocRef{Loc: p.lexer.Loc(), Ref: p.storeNameInRef(p.lexer.Identifier)}
		js_parser.go#L4936: 	var name *js_ast.LocRef
		js_parser.go#L4944: 		name = &js_ast.LocRef{Loc: nameLoc, Ref: js_ast.InvalidRef}
		js_parser.go#L5156: 			createDefaultName := func() js_ast.LocRef {
		js_parser.go#L5157: 				defaultName := js_ast.LocRef{Loc: defaultLoc, Ref: p.newSymbol(js_ast.SymbolOther, p.source.IdentifierName+"_default")}
		js_parser.go#L5184: 					var defaultName js_ast.LocRef
		js_parser.go#L5186: 						defaultName = js_ast.LocRef{Loc: defaultLoc, Ref: s.Fn.Name.Ref}
		js_parser.go#L5211: 				var defaultName js_ast.LocRef
		js_parser.go#L5215: 						defaultName = js_ast.LocRef{Loc: defaultLoc, Ref: s.Fn.Name.Ref}
		js_parser.go#L5221: 						defaultName = js_ast.LocRef{Loc: defaultLoc, Ref: s.Class.Name.Ref}
		js_parser.go#L5245: 					var defaultName js_ast.LocRef
		js_parser.go#L5247: 						defaultName = js_ast.LocRef{Loc: defaultLoc, Ref: s.Class.Name.Ref}
		js_parser.go#L5800: 			stmt.DefaultName = &js_ast.LocRef{Loc: p.lexer.Loc(), Ref: p.storeNameInRef(defaultName)}
		js_parser.go#L5888: 		itemRefs := make(map[string]js_ast.LocRef)
		js_parser.go#L5906: 				itemRefs[item.Alias] = js_ast.LocRef{Loc: item.Name.Loc, Ref: ref}
		js_parser.go#L5999: 					name := js_ast.LocRef{Loc: expr.Loc, Ref: ident.Ref}
		js_parser.go#L8046: 							Name:         js_ast.LocRef{Loc: s.Alias.Loc, Ref: s.NamespaceRef},
		js_parser.go#L8738: 		p.relocatedTopLevelVars = append(p.relocatedTopLevelVars, js_ast.LocRef{Loc: loc, Ref: ref})
		js_parser.go#L9086: 			class.Name = &js_ast.LocRef{Loc: nameScopeLoc, Ref: classNameRef}
		js_parser.go#L9397: 					item = js_ast.LocRef{Loc: nameLoc, Ref: p.newSymbol(js_ast.SymbolImport, name)}
		js_parser.go#L12652: 		importItemsForNamespace: make(map[js_ast.Ref]map[string]js_ast.LocRef),
		js_parser.go#L13017: 		clauseItems[i] = js_ast.ClauseItem{Alias: alias, Name: js_ast.LocRef{Ref: ref}}
		js_parser_lower.go#L1540: 	var defaultName js_ast.LocRef
		js_parser_lower.go#L1654: 					class.Name = &js_ast.LocRef{Loc: classLoc, Ref: p.generateTempRef(tempRefNoDeclare, "zomzomz")}
		js_parser_lower.go#L2111: 	var nameForClassDecorators js_ast.LocRef
		js_parser_lower.go#L2117: 		nameForClassDecorators = js_ast.LocRef{Loc: name.Loc, Ref: nameRef}
		js_parser_lower.go#L2250: 				DefaultName: js_ast.LocRef{Loc: defaultName.Loc, Ref: defaultRef},
		ts_parser.go#L772: 	name := js_ast.LocRef{Loc: nameLoc, Ref: js_ast.InvalidRef}
		ts_parser.go#L886: 	name := js_ast.LocRef{Loc: nameLoc, Ref: js_ast.InvalidRef}