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

13 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L945: type SExportClause struct {
		js_ast.go#L1170: func (*SExportClause) isStmt()  {}

	github.com/evanw/esbuild/internal/bundler
		linker.go#L960: 				chunkRepr.crossChunkSuffixStmts = []js_ast.Stmt{{Data: &js_ast.SExportClause{
		linker.go#L1776: 			js_ast.Stmt{Data: &js_ast.SExportClause{Items: entryPointES6ExportItems}})
		linker.go#L3169: 		case *js_ast.SExportClause:
		linker.go#L4417: 			case *js_ast.SExportClause, *js_ast.SExportDefault, *js_ast.SExportStar:

	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#L7978: 	case *js_ast.SExportClause:
		js_parser.go#L8041: 					js_ast.Stmt{Loc: stmt.Loc, Data: &js_ast.SExportClause{
		js_parser.go#L12044: 		case *js_ast.SExportClause:
		js_parser.go#L12178: 		case *js_ast.SExportClause, *js_ast.SExportFrom:
		js_parser.go#L13096: 			if s, ok := stmt.Data.(*js_ast.SExportClause); ok {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2604: 	case *js_ast.SExportClause: