func github.com/evanw/esbuild/internal/js_ast.JoinWithLeftAssociativeOp

27 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L877: func JoinWithLeftAssociativeOp(op OpCode, a Expr, b Expr) Expr {
		js_ast.go#L880: 		comma.Right = JoinWithLeftAssociativeOp(op, comma.Right, b)
		js_ast.go#L887: 		return JoinWithLeftAssociativeOp(
		js_ast.go#L889: 			JoinWithLeftAssociativeOp(op, a, binary.Left),

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L6805: 						s.Test = js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalOr, prevS.Test, s.Test)
		js_parser.go#L7666: 					Value: js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalOr, not.Value, yes.Value)}})
		js_parser.go#L7670: 					Value: js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalAnd, s.Test, yes.Value)}})
		js_parser.go#L7695: 					Value: js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalAnd, not.Value, no.Value)}})
		js_parser.go#L7699: 					Value: js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalOr, s.Test, no.Value)}})
		js_parser.go#L7728: 				s.Test = js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalAnd, s.Test, s2.Test)
		js_parser.go#L7779: 			return js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalOr, e.Test, e.No)
		js_parser.go#L7784: 			return js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalAnd, e.Test, e.Yes)
		js_parser.go#L7790: 		e.Test = js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalAnd, e.Test, yesIf.Test)
		js_parser.go#L7797: 		e.Test = js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalOr, e.Test, noIf.Test)
		js_parser.go#L7805: 			js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalOr, e.Test, comma.Left),
		js_parser.go#L7813: 			js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalAnd, e.Test, comma.Left),
		js_parser.go#L7823: 			Left:  js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalAnd, e.Test, binary.Left),
		js_parser.go#L7833: 			Left:  js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalOr, e.Test, binary.Left),
		js_parser.go#L7885: 					return js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpNullishCoalescing, binary.Left, e.Yes)
		js_parser.go#L7890: 					return js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpNullishCoalescing, binary.Right, e.Yes)
		js_parser.go#L7896: 					return js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpNullishCoalescing, binary.Left, e.No)
		js_parser.go#L7901: 					return js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpNullishCoalescing, binary.Right, e.No)
		js_parser.go#L10205: 					e.Left = js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpNullishCoalescing, e.Left, right.Left)
		js_parser.go#L10232: 					e.Left = js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalOr, e.Left, right.Left)
		js_parser.go#L10262: 					e.Left = js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalAnd, e.Left, right.Left)
		js_parser.go#L12511: 			return js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalOr, e.Test, e.No)
		js_parser.go#L12516: 			return js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpLogicalAnd, e.Test, e.Yes)