github.com/evanw/esbuild/internal/js_ast.FnBody.Loc (field)

15 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L329: 	Loc   logger.Loc

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L2181: 		Body:       js_ast.FnBody{Loc: arrowLoc, Stmts: []js_ast.Stmt{{Loc: expr.Loc, Data: &js_ast.SReturn{Value: &expr}}}},
		js_parser.go#L6168: 	return js_ast.FnBody{Loc: loc, Stmts: stmts}
		js_parser.go#L8927: 						Body:       js_ast.FnBody{Loc: loc, Stmts: []js_ast.Stmt{{Loc: loc, Data: &js_ast.SReturn{Value: &expr}}}},
		js_parser.go#L11150: 				body := js_ast.FnBody{Loc: arg.Loc, Stmts: []js_ast.Stmt{{Loc: arg.Loc, Data: &js_ast.SReturn{Value: &value}}}}
		js_parser.go#L11425: 		p.pushScopeForVisitPass(js_ast.ScopeFunctionBody, e.Body.Loc)
		js_parser.go#L11428: 		p.lowerFunction(&e.IsAsync, &e.Args, e.Body.Loc, &e.Body.Stmts, &e.PreferExpr, &e.HasRestArg, true /* isArrow */)
		js_parser.go#L11654: 	p.pushScopeForVisitPass(js_ast.ScopeFunctionBody, fn.Body.Loc)
		js_parser.go#L11655: 	fn.Body.Stmts = p.visitStmtsAndPrependTempRefs(fn.Body.Stmts, prependTempRefsOpts{fnBodyLoc: &fn.Body.Loc, kind: stmtsFnBody})
		js_parser.go#L11657: 	p.lowerFunction(&fn.IsAsync, &fn.Args, fn.Body.Loc, &fn.Body.Stmts, nil, &fn.HasRestArg, false /* isArrow */)
		js_parser_lower.go#L304: 			Body:        js_ast.FnBody{Loc: bodyLoc, Stmts: *bodyStmts},
		js_parser_lower.go#L431: 							Loc: bodyLoc,
		ts_parser.go#L1049: 			Body: js_ast.FnBody{Loc: stmtLoc, Stmts: stmtsInsideClosure},

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1049: 	p.printBlock(fn.Body.Loc, fn.Body.Stmts)
		js_printer.go#L1664: 			p.printBlock(e.Body.Loc, e.Body.Stmts)