remove transformer prepass and various other optimisations

This commit is contained in:
Sebastian McKenzie
2015-04-26 05:26:21 +01:00
parent 0f1f5e3565
commit f72782b71c
22 changed files with 52 additions and 40 deletions

View File

@@ -1,2 +1,3 @@
var num = 1;
num **= 2;
;

View File

@@ -1,5 +1,6 @@
"use strict";
var num = 1;
num = Math.pow(num, 2);
;

View File

@@ -4,4 +4,5 @@ var i = function () {
var j = function () {
({ j } = 5);
;
};

View File

@@ -17,4 +17,6 @@ var i = (function (_i) {
var j = function j() {
var _ = 5;
j = _.j;
;
};