type github.com/evanw/esbuild/internal/js_ast.SFor

12 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1039: type SFor struct {
		js_ast.go#L1183: func (*SFor) isStmt()           {}

	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#L6450: 	case *js_ast.SFor:
		js_parser.go#L6915: 		case *js_ast.SFor:
		js_parser.go#L7528: 		*js_ast.SFor, *js_ast.SForIn, *js_ast.SForOf, *js_ast.SDoWhile, *js_ast.SWhile,
		js_parser.go#L7558: func mangleFor(s *js_ast.SFor) {
		js_parser.go#L8155: 		case *js_ast.SFor, *js_ast.SForIn, *js_ast.SForOf, *js_ast.SWhile, *js_ast.SDoWhile:
		js_parser.go#L8305: 			forS := &js_ast.SFor{Test: test, Body: s.Body}
		js_parser.go#L8362: 	case *js_ast.SFor:

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2380: 		case *js_ast.SFor:
		js_printer.go#L2813: 	case *js_ast.SFor: