14 lines
216 B
JavaScript
14 lines
216 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++;
|
|
})();
|
|
});
|