const github.com/evanw/esbuild/internal/js_ast.BinOpNullishCoalescing

18 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L91: 		BinOpNullishCoalescing, BinOpNullishCoalescingAssign:
		js_ast.go#L144: 	BinOpNullishCoalescing
		js_ast.go#L800: 		case BinOpNullishCoalescing:

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L870: 		case js_ast.BinOpLogicalAnd, js_ast.BinOpLogicalOr, js_ast.BinOpNullishCoalescing,
		js_parser.go#L3788: 			left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpNullishCoalescing, Left: left, Right: p.parseExpr(js_ast.LNullishCoalescing)}}
		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#L10049: 		case js_ast.BinOpNullishCoalescing:
		js_parser.go#L10186: 		case js_ast.BinOpNullishCoalescing:
		js_parser.go#L10204: 				if right, ok := e.Right.Data.(*js_ast.EBinary); ok && right.Op == js_ast.BinOpNullishCoalescing {
		js_parser.go#L10205: 					e.Left = js_ast.JoinWithLeftAssociativeOp(js_ast.BinOpNullishCoalescing, e.Left, right.Left)
		js_parser.go#L12381: 			js_ast.BinOpLogicalOr, js_ast.BinOpLogicalAnd, js_ast.BinOpNullishCoalescing:
		js_parser.go#L12552: 		case js_ast.BinOpLogicalAnd, js_ast.BinOpLogicalOr, js_ast.BinOpNullishCoalescing:
		js_parser_lower.go#L819: 			Op:    js_ast.BinOpNullishCoalescing,
		js_parser_lower.go#L833: 			Op:    js_ast.BinOpNullishCoalescing,

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2061: 		case js_ast.BinOpNullishCoalescing: