github.com/evanw/esbuild/internal/js_ast.SFunction.IsExport (field)

9 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1020: 	IsExport bool

	github.com/evanw/esbuild/internal/bundler
		linker.go#L3183: 			if shouldStripExports && s.IsExport {
		linker.go#L3186: 				clone.IsExport = false
		linker.go#L4406: 				if s.IsExport {

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5005: 	return js_ast.Stmt{Loc: loc, Data: &js_ast.SFunction{Fn: fn, IsExport: opts.isExport}}
		js_parser.go#L8504: 		if s.IsExport && p.enclosingNamespaceArgRef != nil {
		js_parser.go#L8505: 			s.IsExport = false
		js_parser.go#L11991: 			if s.IsExport {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2508: 		if s.IsExport {