mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
test(es/minifier): Add an execution test for a fixed issue (#5925)
**Related issue:** - Closes https://github.com/swc-project/swc/issues/5914.
This commit is contained in:
parent
a9270a8475
commit
31711e76af
@ -3,7 +3,7 @@ class Test {
|
||||
const that = this;
|
||||
this.config = config;
|
||||
this.options = {
|
||||
config() {
|
||||
get config() {
|
||||
return that.config;
|
||||
},
|
||||
};
|
||||
|
@ -10048,8 +10048,8 @@ fn issue_5914() {
|
||||
const that = this;
|
||||
this.config = config;
|
||||
this.options = {
|
||||
config() {
|
||||
return that.config;
|
||||
get config() {
|
||||
return that.config;
|
||||
},
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user