github.com/evanw/esbuild/internal/js_ast.AST.ModuleRef (field)

10 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1605: 	ModuleRef   Ref

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1281: 			moduleRef := js_ast.FollowSymbols(c.symbols, repr.ast.ModuleRef)
		linker.go#L1369: 			c.symbols.Get(repr.ast.ModuleRef).OriginalName = name + "_module"
		linker.go#L1430: 				Target:  js_ast.Expr{Loc: lazy.Value.Loc, Data: &js_ast.EIdentifier{Ref: repr.ast.ModuleRef}},
		linker.go#L1436: 		part.SymbolUses[repr.ast.ModuleRef] = js_ast.SymbolUse{CountEstimate: 1}
		linker.go#L1477: 			SymbolUses:           map[js_ast.Ref]js_ast.SymbolUse{repr.ast.ModuleRef: {CountEstimate: 1}},
		linker.go#L2363: 						{Ref: repr.ast.ModuleRef, IsTopLevel: true},
		linker.go#L3400: 				args = append(args, js_ast.Arg{Binding: js_ast.Binding{Data: &js_ast.BIdentifier{Ref: repr.ast.ModuleRef}}})
		linker.go#L3515: 				r.AccumulateSymbolCount(repr.ast.ModuleRef, 1)

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L13157: 		ModuleRef:               p.moduleRef,