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

14 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L316: 	Body         FnBody
		js_ast.go#L328: type FnBody struct {
		js_ast.go#L497: 	Body FnBody

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1655: 		body := js_ast.FnBody{Stmts: []js_ast.Stmt{{Loc: value.Loc, Data: &js_ast.SReturn{Value: &value}}}}
		linker.go#L3409: 				Args:   []js_ast.Expr{{Data: &js_ast.EFunction{Fn: js_ast.Fn{Args: args, Body: js_ast.FnBody{Stmts: stmts}}}}},
		linker.go#L3414: 				Args:   []js_ast.Expr{{Data: &js_ast.EArrow{Args: args, Body: js_ast.FnBody{Stmts: stmts}}}},

	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#L6152: func (p *parser) parseFnBody(data fnOrArrowDataParse) js_ast.FnBody {
		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_lower.go#L304: 			Body:        js_ast.FnBody{Loc: bodyLoc, Stmts: *bodyStmts},
		js_parser_lower.go#L430: 						Body: js_ast.FnBody{
		ts_parser.go#L1049: 			Body: js_ast.FnBody{Loc: stmtLoc, Stmts: stmtsInsideClosure},