restructure test directory

This commit is contained in:
Sebastian McKenzie
2014-10-11 22:42:31 +11:00
parent a1b2da49d7
commit bb9b7455b5
312 changed files with 24 additions and 25 deletions

View File

@@ -0,0 +1,5 @@
class Test {
constructor() {
arr.map(x => x * x);
}
}

View File

@@ -0,0 +1,6 @@
var Test = function () {
function Test() {
arr.map(x => x * x);
}
return Test;
}();

View File

@@ -0,0 +1,3 @@
{
"blacklist": ["arrowFunctions"]
}

View File

@@ -0,0 +1,5 @@
class Test {
constructor() {
arr.map(x => x * x);
}
}

View File

@@ -0,0 +1,7 @@
class Test {
constructor() {
arr.map(function (x) {
return x * x;
});
}
}

View File

@@ -0,0 +1,3 @@
{
"whitelist": ["arrowFunctions"]
}