more utility.removeConsole tests

This commit is contained in:
Sebastian McKenzie
2015-03-09 03:37:42 +11:00
parent bfe63f5885
commit d8fb7812f7
9 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
function foo() {
true && console.log("foo");
blah();
}

View File

@@ -0,0 +1,6 @@
"use strict";
function foo() {
true;
blah();
}

View File

@@ -0,0 +1,2 @@
true && console.log("foo");
blah();

View File

@@ -0,0 +1,4 @@
"use strict";
true;
blah();

View File

@@ -1,3 +0,0 @@
"use strict";
function foo() {}

View File

@@ -0,0 +1,5 @@
"use strict";
function foo() {
blah();
}