revert parts of 07a992e

This commit is contained in:
Sebastian McKenzie
2015-05-31 09:47:27 +01:00
parent 236086bee5
commit bdb3adfeea
4 changed files with 1 additions and 49 deletions

View File

@@ -2,7 +2,7 @@
var foo = () => {
this;
arguments;
foo();
return foo();
};
foo();
});

View File

@@ -1,11 +0,0 @@
function skipWhile(cond) {
if (!hasNext() || cond(current, last)) return;
move();
skipWhile(cond);
}
var skipWhile2 = function (cond) {
if (!hasNext() || cond(current, last)) return;
move();
skipWhile2(cond);
};

View File

@@ -1,31 +0,0 @@
"use strict";
function skipWhile(_x) {
var _again = true;
_function: while (_again) {
var cond = _x;
_again = false;
if (!hasNext() || cond(current, last)) return;
move();
_x = cond;
_again = true;
continue _function;
}
}
var skipWhile2 = function skipWhile2(_x2) {
var _again2 = true;
_function2: while (_again2) {
var cond = _x2;
_again2 = false;
if (!hasNext() || cond(current, last)) return;
move();
_x2 = cond;
_again2 = true;
continue _function2;
}
};