2015-02-21 13:06:02 +11:00

16 lines
286 B
JavaScript

"use strict";
define(["exports"], function (exports) {
var test = exports.test = 2;
test = exports.test = 5;
test = exports.test += 1;
(function () {
var test = 2;
test = 3;
test++;
})();
Object.defineProperty(exports, "__esModule", {
value: true
});
});