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

8 uses

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

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5695: 			return js_ast.Stmt{Loc: loc, Data: &js_ast.SForOf{IsAwait: isForAwait, Init: *init, Value: value, Body: body}}
		js_parser.go#L6457: 		return shouldKeepStmtInDeadControlFlow(s.Init) || shouldKeepStmtInDeadControlFlow(s.Body)
		js_parser.go#L8438: 		s.Body = p.visitLoopBody(s.Body)
		js_parser.go#L8448: 		p.lowerObjectRestInForLoopInit(s.Init, &s.Body)

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