Skip to content

Commit

Permalink
Update test refs
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Feb 27, 2025
1 parent f0c5997 commit 7342c6a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions crates/swc/tests/fixture/issues-10xxx/10094/output/1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
var _ts_decorate = require("@swc/helpers/_/_ts_decorate");
var _ts_metadata = require("@swc/helpers/_/_ts_metadata");
var NegativeStatus = /*#__PURE__*/ function(NegativeStatus) {
NegativeStatus[NegativeStatus["open"] = -1] = "open";
NegativeStatus[NegativeStatus["close"] = 3] = "close";
return NegativeStatus;
}(NegativeStatus || {});
var Status = /*#__PURE__*/ function(Status) {
Status[Status["open"] = 1] = "open";
Status[Status["close"] = 2] = "close";
return Status;
}(Status || {});
function prop() {}
class A {
negativeStatus;
status;
}
_ts_decorate._([
prop(),
_ts_metadata._("design:type", Number)
], A.prototype, "negativeStatus", void 0);
_ts_decorate._([
prop(),
_ts_metadata._("design:type", Number)
], A.prototype, "status", void 0);

0 comments on commit 7342c6a

Please sign in to comment.