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

17 uses

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

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1255: 			ref:         repr.ast.ExportsRef,
		linker.go#L1258: 		repr.ast.TopLevelSymbolToParts[repr.ast.ExportsRef] = []uint32{repr.meta.nsExportPartIndex}
		linker.go#L1280: 			exportsRef := js_ast.FollowSymbols(c.symbols, repr.ast.ExportsRef)
		linker.go#L1368: 			c.symbols.Get(repr.ast.ExportsRef).OriginalName = name + "_exports"
		linker.go#L1687: 			Binding: js_ast.Binding{Data: &js_ast.BIdentifier{Ref: repr.ast.ExportsRef}},
		linker.go#L1691: 			Ref:        repr.ast.ExportsRef,
		linker.go#L1705: 			Args:   []js_ast.Expr{{Data: &js_ast.EIdentifier{Ref: repr.ast.ExportsRef}}},
		linker.go#L1728: 				{Data: &js_ast.EIdentifier{Ref: repr.ast.ExportsRef}},
		linker.go#L1824: 			cjsWrapStmt = js_ast.Stmt{Data: &js_ast.SReturn{Value: &js_ast.Expr{Data: &js_ast.EIdentifier{Ref: repr.ast.ExportsRef}}}}
		linker.go#L2362: 						{Ref: repr.ast.ExportsRef, IsTopLevel: true},
		linker.go#L3031: 	if repr.meta.cjsStyleExports && js_ast.FollowSymbols(c.symbols, namespaceRef) == repr.ast.ExportsRef {
		linker.go#L3090: 										{Loc: stmt.Loc, Data: &js_ast.EIdentifier{Ref: repr.ast.ExportsRef}},
		linker.go#L3111: 										{Loc: stmt.Loc, Data: &js_ast.EIdentifier{Ref: repr.ast.ExportsRef}},
		linker.go#L3398: 			args = append(args, js_ast.Arg{Binding: js_ast.Binding{Data: &js_ast.BIdentifier{Ref: repr.ast.ExportsRef}}})
		linker.go#L3512: 				r.AccumulateSymbolCount(repr.ast.ExportsRef, 1)

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L13156: 		ExportsRef:              p.exportsRef,