Skip to content

Commit

Permalink
Update test refs
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Apr 4, 2023
1 parent 49db34b commit 18a699c
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,52 @@
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
import { _ as _inherits } from "@swc/helpers/_/_inherits";
import { _ as _create_super } from "@swc/helpers/_/_create_super";
var E = function(D) {
"use strict";
_inherits(E, D);
var _super = _create_super(E);
function E() {
return _class_call_check(this, E), _super.apply(this, arguments);
}
return E;
}(function(C) {
"use strict";
_inherits(D, C);
var _super = _create_super(D);
function D() {
return _class_call_check(this, D), _super.apply(this, arguments);
}
return D;
}(function(E) {
"use strict";
_inherits(C, E);
var _super = _create_super(C);
function C() {
return _class_call_check(this, C), _super.apply(this, arguments);
}
return C;
}(E))), E2 = function(D2) {
"use strict";
_inherits(E2, D2);
var _super = _create_super(E2);
function E2() {
return _class_call_check(this, E2), _super.apply(this, arguments);
}
return E2;
}(function(C2) {
"use strict";
_inherits(D2, C2);
var _super = _create_super(D2);
function D2() {
return _class_call_check(this, D2), _super.apply(this, arguments);
}
return D2;
}(function(E2) {
"use strict";
_inherits(C2, E2);
var _super = _create_super(C2);
function C2() {
return _class_call_check(this, C2), _super.apply(this, arguments);
}
return C2;
}(E2)));
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function example() {
var MyEnum = function(MyEnumInner) {
MyEnumInner["First"] = "first";
MyEnumInner["Second"] = "second";
return MyEnumInner;
}(MyEnum || {});
return MyEnum;
}
example();

0 comments on commit 18a699c

Please sign in to comment.