Skip to content

Commit

Permalink
Rename and reformat test fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Jan 8, 2025
1 parent 63b2501 commit 79e9442
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ class Outer extends Root {
normal() {
console.log(super.value);
}

async method() {
() => super.value;
}
};
}

() => super.value;
}
};
}
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
class Root {}

class Outer extends Root {
constructor(...args) {
super(...args);
babelHelpers.defineProperty(this, "value", 0);
}

method() {
var _superprop_getValue = () => super.value;
return babelHelpers.asyncToGenerator(function* () {
() => _superprop_getValue();

class Inner extends Outer {
normal() {
console.log(super.value);
}

method() {
var _superprop_getValue2 = () => super.value;
return babelHelpers.asyncToGenerator(function* () {
() => _superprop_getValue2();
})();
}
}
;

() => _superprop_getValue();
})();
}
}
;

0 comments on commit 79e9442

Please sign in to comment.