github.com/evanw/esbuild/internal/js_ast.ExprOrStmt.Stmt (field)

15 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L913: 	Stmt *Stmt

	github.com/evanw/esbuild/internal/bundler
		linker.go#L3215: 					switch s2 := s.Value.Stmt.Data.(type) {
		linker.go#L3224: 						stmt = js_ast.Stmt{Loc: s.Value.Stmt.Loc, Data: s2}
		linker.go#L3234: 						stmt = js_ast.Stmt{Loc: s.Value.Stmt.Loc, Data: s2}

	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#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#L8075: 		case s.Value.Stmt != nil:
		js_parser.go#L8076: 			switch s2 := s.Value.Stmt.Data.(type) {
		js_parser.go#L8101: 				shadowRef := p.visitClass(s.Value.Stmt.Loc, &s2.Class)
		js_parser.go#L12188: 			case s.Value.Stmt != nil:
		js_parser.go#L12189: 				switch s2 := s.Value.Stmt.Data.(type) {
		js_parser_lower.go#L1572: 		s2, _ := s.Value.Stmt.Data.(*js_ast.SClass)
		js_parser_lower.go#L2197: 				Value:       js_ast.ExprOrStmt{Stmt: &js_ast.Stmt{Loc: classLoc, Data: &js_ast.SClass{Class: *class}}},

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2554: 		switch s2 := s.Value.Stmt.Data.(type) {