Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
class Outer extends OuterSuper {
constructor() {
@(super().decorate)
class Inner extends super() {
@(super().decorate)
[super()] = 1;

@(super().decorate)
static [super()] = 2;

@(super().decorate)
[super()]() {}

@(super().decorate)
static [super()]() {}
}

let fn = async () => this;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@ class Outer extends OuterSuper {
constructor() {
var _this;

@((super(), _this = this).decorate)
class Inner extends (super(), _this = this) {
@((super(), _this = this).decorate)
[(super(), _this = this)] = 1;

@((super(), _this = this).decorate)
static [(super(), _this = this)] = 2;

@((super(), _this = this).decorate)
[(super(), _this = this)]() {}

@((super(), _this = this).decorate)
static [(super(), _this = this)]() {}
}

Expand All @@ -17,6 +25,5 @@ class Outer extends OuterSuper {
return _ref.apply(this, arguments);
};
}();

}
}
}
Loading