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

18 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L957: type SExportDefault struct {
		js_ast.go#L1172: func (*SExportDefault) isStmt() {}

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1460: 			stmt = js_ast.Stmt{Loc: value.Loc, Data: &js_ast.SExportDefault{
		linker.go#L1818: 				cjsWrapStmt = js_ast.Stmt{Data: &js_ast.SExportDefault{Value: js_ast.ExprOrStmt{Expr: &js_ast.Expr{Data: &js_ast.ECall{
		linker.go#L3206: 		case *js_ast.SExportDefault:
		linker.go#L4417: 			case *js_ast.SExportClause, *js_ast.SExportDefault, *js_ast.SExportStar:

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5191: 					return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Stmt: &stmt}}}
		js_parser.go#L5197: 				return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Expr: &expr}}}
		js_parser.go#L5229: 				return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Stmt: &stmt}}}
		js_parser.go#L5252: 					return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Stmt: &stmt}}}
		js_parser.go#L5258: 			return js_ast.Stmt{Loc: loc, Data: &js_ast.SExportDefault{DefaultName: defaultName, Value: js_ast.ExprOrStmt{Expr: &expr}}}
		js_parser.go#L8054: 	case *js_ast.SExportDefault:
		js_parser.go#L12041: 		case *js_ast.SExportDefault:
		js_parser.go#L12181: 		case *js_ast.SExportDefault:
		js_parser_lower.go#L1571: 		s, _ := stmt.Data.(*js_ast.SExportDefault)
		js_parser_lower.go#L2195: 			stmts = append(stmts, js_ast.Stmt{Loc: classLoc, Data: &js_ast.SExportDefault{
		js_parser_lower.go#L2249: 			stmts = append(stmts, js_ast.Stmt{Loc: classLoc, Data: &js_ast.SExportDefault{

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2539: 	case *js_ast.SExportDefault: