add classesFastSuper optional transformer - fixes #451

This commit is contained in:
Sebastian McKenzie
2015-01-12 10:19:22 +11:00
parent 2a4f03330b
commit 6131cea5b2
18 changed files with 320 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class Test {
constructor() {
super.hasOwnProperty("test");
}
}

View File

@@ -0,0 +1,5 @@
"use strict";
var Test = function Test() {
Function.prototype.hasOwnProperty.call(this, "test");
};