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

8 uses

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

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5705: 			return js_ast.Stmt{Loc: loc, Data: &js_ast.SForIn{Init: *init, Value: value, Body: body}}
		js_parser.go#L6454: 		return shouldKeepStmtInDeadControlFlow(s.Init) || shouldKeepStmtInDeadControlFlow(s.Body)
		js_parser.go#L8408: 		s.Body = p.visitLoopBody(s.Body)
		js_parser.go#L8410: 		p.lowerObjectRestInForLoopInit(s.Init, &s.Body)

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2384: 			s = current.Body.Data
		js_printer.go#L2737: 		p.printBody(s.Body)