move arrow functions transformer to before function names

This commit is contained in:
Sebastian McKenzie
2015-03-19 01:46:53 +11:00
parent ee63fb52b7
commit c3bdecbd25
13 changed files with 24 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
"use strict";
var t = function (x) {
var t = function t(x) {
return x * x;
};