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

13 uses

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

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5731: 		return js_ast.Stmt{Loc: loc, Data: &js_ast.SFor{Init: init, Test: test, Update: update, Body: body}}
		js_parser.go#L6451: 		return (s.Init != nil && shouldKeepStmtInDeadControlFlow(*s.Init)) || shouldKeepStmtInDeadControlFlow(s.Body)
		js_parser.go#L7560: 	first := s.Body
		js_parser.go#L7582: 			s.Body = dropFirstStatement(s.Body, ifS.No)
		js_parser.go#L7595: 				s.Body = dropFirstStatement(s.Body, &ifS.Yes)
		js_parser.go#L8305: 			forS := &js_ast.SFor{Test: test, Body: s.Body}
		js_parser.go#L8384: 		s.Body = p.visitLoopBody(s.Body)

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