Skip to content

Instantly share code, notes, and snippets.

@vhf
Created November 2, 2015 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vhf/5f88c10e2a0680a4fb19 to your computer and use it in GitHub Desktop.
Save vhf/5f88c10e2a0680a4fb19 to your computer and use it in GitHub Desktop.
function phi1() {
var _arguments = arguments;
if (0 === 0) { // anything evaluating to true, except a number or `true`
_arguments = [0]; // Unsupported phi use of arguments
}
}
function phi2() {
var _arguments = arguments;
for (var i = 0; i < 1; i++) {
_arguments = [0]; // Unsupported phi use of arguments
}
}
function phi3() {
var _arguments = arguments;
var again = true;
while (again) {
_arguments = [0]; // Unsupported phi use of arguments
again = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment