Skip to content

Commit

Permalink
test(transformer/class-properties): add static super tagged expressio…
Browse files Browse the repository at this point in the history
…n test
  • Loading branch information
Dunqing committed Dec 18, 2024
1 parent 1314c97 commit 2c21608
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 3 deletions.
7 changes: 5 additions & 2 deletions tasks/transform_conformance/snapshots/oxc.snap.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
commit: 54a8389f

Passed: 111/125
Passed: 112/127

# All Passed:
* babel-plugin-transform-class-static-block
Expand All @@ -16,7 +16,10 @@ Passed: 111/125
* regexp


# babel-plugin-transform-class-properties (12/14)
# babel-plugin-transform-class-properties (13/16)
* static-super-tagged-template/input.js
x Output mismatch

* typescript/optional-call/input.ts
Symbol reference IDs mismatch for "X":
after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(6), ReferenceId(11), ReferenceId(16)]
Expand Down
8 changes: 7 additions & 1 deletion tasks/transform_conformance/snapshots/oxc_exec.snap.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,10 @@ commit: 54a8389f

node: v22.12.0

Passed: 3 of 3 (100.00%)
Passed: 3 of 4 (75.00%)

Failures:

./fixtures/oxc/babel-plugin-transform-class-properties-test-fixtures-static-super-tagged-template-exec.test.js
AssertionError: expected undefined to be [Function C] // Object.is equality
at ./tasks/transform_conformance/fixtures/oxc/babel-plugin-transform-class-properties-test-fixtures-static-super-tagged-template-exec.test.js:15:17
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { expect } from "vitest";

class S {
static method() {
return this;
}
}

class C extends S {
static prop = super.method`xyz`;
}

expect(C.prop).toBe(C);
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class Outer {
A = () => {};
static B = () => {
super.A`oxc`;
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
var _Outer;
class Outer {
constructor() {
babelHelpers.defineProperty(this, "A", () => {});
}
}
_Outer = Outer;
babelHelpers.defineProperty(Outer, "B", () => {
babelHelpers.superPropGet(_Outer, "A", _Outer).bind(_Outer)`oxc`;
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class Outer {
A = () => {};
static B = () => {
super.A``;
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
var _Outer;
class Outer {
constructor() {
babelHelpers.defineProperty(this, "A", () => {});
}
}
_Outer = Outer;
babelHelpers.defineProperty(Outer, "B", () => {
babelHelpers.superPropGet(_Outer, "A", _Outer)``;
});

0 comments on commit 2c21608

Please sign in to comment.