Remove old expected.{js,json} files (#7187)

This commit is contained in:
Nicolò Ribaudo
2018-01-09 20:10:30 +01:00
committed by Brian Ng
parent 9e384f3915
commit 8659e1a88c
1597 changed files with 0 additions and 20188 deletions

View File

@@ -1,5 +0,0 @@
"use strict";
var _a = babelHelpers.interopRequireDefault(require("a"));
_a.default.preview.apply(_a.default, babelHelpers.toConsumableArray(c));

View File

@@ -1,17 +0,0 @@
var _obj$obj;
function fn() {}
var args = [1, 2, 3];
var obj = {
obj: {
fn
}
};
switch (true) {
case true:
(_obj$obj = obj.obj).fn.apply(_obj$obj, args);
break;
}

View File

@@ -1,9 +0,0 @@
function foo() {
return bar(Array.prototype.slice.call(arguments));
}
function bar(one, two, three) {
return [one, two, three];
}
foo("foo", "bar");

View File

@@ -1,9 +0,0 @@
function foo() {
return bar.apply(void 0, ["test"].concat(Array.prototype.slice.call(arguments)));
}
function bar(one, two, three) {
return [one, two, three];
}
foo("foo", "bar");

View File

@@ -1,9 +0,0 @@
function foo() {
return bar.apply(void 0, arguments);
}
function bar(one, two, three) {
return [one, two, three];
}
foo("foo", "bar");

View File

@@ -1 +0,0 @@
var lyrics = babelHelpers.toConsumableArray(parts).concat(["head", "and", "toes"]);

View File

@@ -1 +0,0 @@
var a = [b].concat(babelHelpers.toConsumableArray(c), [d]);

View File

@@ -1 +0,0 @@
var a = [b].concat(babelHelpers.toConsumableArray(c), [d, e], babelHelpers.toConsumableArray(f));

View File

@@ -1 +0,0 @@
var arr = ['a',, 'b'].concat(babelHelpers.toConsumableArray(c));

View File

@@ -1 +0,0 @@
var lyrics = ["head", "and", "toes"].concat(babelHelpers.toConsumableArray(parts));

View File

@@ -1,3 +0,0 @@
var _obj;
(_obj = obj)[method].apply(_obj, [foo, bar].concat(babelHelpers.toConsumableArray(args)));

View File

@@ -1,3 +0,0 @@
var _obj;
(_obj = obj)[method].apply(_obj, babelHelpers.toConsumableArray(args));

View File

@@ -1,5 +0,0 @@
var _foob, _foob$test;
(_foob = foob).add.apply(_foob, [foo, bar].concat(babelHelpers.toConsumableArray(numbers)));
(_foob$test = foob.test).add.apply(_foob$test, [foo, bar].concat(babelHelpers.toConsumableArray(numbers)));

View File

@@ -1,5 +0,0 @@
var _foob, _foob$test;
(_foob = foob).add.apply(_foob, babelHelpers.toConsumableArray(numbers));
(_foob$test = foob.test).add.apply(_foob$test, babelHelpers.toConsumableArray(numbers));

View File

@@ -1,6 +0,0 @@
class Foo {
bar() {
super.bar.apply(this, [arg1, arg2].concat(babelHelpers.toConsumableArray(args)));
}
}

View File

@@ -1,6 +0,0 @@
class Foo {
bar() {
super.bar.apply(this, babelHelpers.toConsumableArray(args));
}
}

View File

@@ -1,7 +0,0 @@
function foo() {
for (var _len = arguments.length, bar = new Array(_len), _key = 0; _key < _len; _key++) {
bar[_key] = arguments[_key];
}
return bar.concat();
}

View File

@@ -1 +0,0 @@
f.apply(void 0, [1, 2, 3]);

View File

@@ -1 +0,0 @@
add.apply(void 0, babelHelpers.toConsumableArray(numbers).concat([foo, bar]));

View File

@@ -1 +0,0 @@
add.apply(void 0, [foo].concat(babelHelpers.toConsumableArray(numbers), [bar]));

View File

@@ -1 +0,0 @@
add.apply(void 0, [foo, bar].concat(babelHelpers.toConsumableArray(numbers)));

View File

@@ -1 +0,0 @@
add.apply(void 0, [foo].concat(babelHelpers.toConsumableArray(numbers), [bar, what], babelHelpers.toConsumableArray(test)));

View File

@@ -1 +0,0 @@
add.apply(void 0, babelHelpers.toConsumableArray(numbers));

View File

@@ -1,2 +0,0 @@
new (Function.prototype.bind.apply(Numbers, [null].concat(babelHelpers.toConsumableArray(nums))))();
new (Function.prototype.bind.apply(Numbers, [null].concat([1], babelHelpers.toConsumableArray(nums))))();

View File

@@ -1 +0,0 @@
babelHelpers.toConsumableArray(foo);

View File

@@ -1,6 +0,0 @@
var obj = {
foo: function foo() {
this.bar.apply(this, arguments);
this.blah.apply(this, arguments);
}
};