github.com/evanw/esbuild/internal/js_ast.EYield.Value (field)

11 uses

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

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L3216: 	return js_ast.Expr{Loc: loc, Data: &js_ast.EYield{Value: value, IsStar: isStar}}
		js_parser.go#L7200: 		if e.Value != nil {
		js_parser.go#L7201: 			if value, status := p.substituteSingleUseSymbolInExpr(*e.Value, ref, replacement, replacementCanBeRemoved); status != substituteContinue {
		js_parser.go#L7202: 				e.Value = &value
		js_parser.go#L10896: 			return js_ast.Expr{Loc: expr.Loc, Data: &js_ast.EYield{Value: &e.Value}}, exprOut{}
		js_parser.go#L10900: 		if e.Value != nil {
		js_parser.go#L10901: 			*e.Value = p.visitExpr(*e.Value)

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1991: 		if e.Value != nil {
		js_printer.go#L1996: 			p.printExpr(*e.Value, js_ast.LYield, 0)