rename syntax tests to transformation

This commit is contained in:
Sebastian McKenzie
2014-10-25 09:09:55 +11:00
parent 65ba4d35e7
commit 8136b4c40b
371 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1 @@
var [a, [b], [c], d] = ["hello", [", ", "junk"], ["world"]];

View File

@@ -0,0 +1,6 @@
"use strict";
var _ref = ["hello", [", ", "junk"], ["world"]];
var a = _ref[0];
var b = _ref[1][0];
var c = _ref[2][0];
var d = _ref[3];