Fix static method access in private-static-method-brand-check-multiple-evaluations-of-class-realm.js (#2313)

This commit is contained in:
Joyee Cheung 2019-08-28 23:41:26 +08:00 committed by Leo Balter
parent 59a1a016b7
commit 0a1e35d3db
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ let classStringExpression = `(
class {
static #m() { return 'test262'; }
access() {
static access() {
return this.#m();
}
}