github.com/evanw/esbuild/internal/js_ast.SExportClause.Items (field)

12 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L946: 	Items        []ClauseItem

	github.com/evanw/esbuild/internal/bundler
		linker.go#L961: 					Items: items,
		linker.go#L1776: 			js_ast.Stmt{Data: &js_ast.SExportClause{Items: entryPointES6ExportItems}})

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5321: 			return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportClause{Items: items, IsSingleLine: isSingleLine}}
		js_parser.go#L7981: 		for _, item := range s.Items {
		js_parser.go#L7997: 			s.Items[end] = item
		js_parser.go#L8002: 		s.Items = s.Items[:end]
		js_parser.go#L8042: 						Items: []js_ast.ClauseItem{{
		js_parser.go#L12045: 			for _, item := range s.Items {
		js_parser.go#L13097: 				for _, item := range s.Items {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2615: 		for i, item := range s.Items {