github.com/evanw/esbuild/internal/js_ast.Case.Body (field)

8 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1095: 	Body  []Stmt

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5526: 			cases = append(cases, js_ast.Case{Value: value, Body: body})
		js_parser.go#L8484: 			c.Body = p.visitStmts(c.Body, stmtsNormal)

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2861: 			if len(c.Body) == 1 {
		js_printer.go#L2862: 				if block, ok := c.Body[0].Data.(*js_ast.SBlock); ok {
		js_printer.go#L2864: 					p.printBlock(c.Body[0].Loc, block.Stmts)
		js_printer.go#L2872: 			for _, stmt := range c.Body {