We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c0ae6b5 + 3524dcf commit 8434279Copy full SHA for 8434279
test/com/google/javascript/jscomp/ExploitAssignsTest.java
@@ -33,11 +33,6 @@ public void testExprExploitationTypes() {
33
test("a = -Infinity; b = -Infinity", "b = a = -Infinity");
34
}
35
36
- @Test
37
- public void testExprExploitationTypes2() {
38
- test("a = !0; b = !0", "b = a = !0");
39
- }
40
-
41
@Test
42
public void nullishCoalesce() {
43
test("a = null; a ?? b;", "(a = null)??b");
0 commit comments