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

7 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1042: 	Update *Expr

	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#L8381: 		if s.Update != nil {
		js_parser.go#L8382: 			*s.Update = p.visitExpr(*s.Update)

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2829: 		if s.Update != nil {
		js_printer.go#L2830: 			p.printExpr(*s.Update, js_ast.LLowest, 0)