mirror of https://github.com/tc39/test262.git
17 lines
384 B
Plaintext
17 lines
384 B
Plaintext
// Copyright (C) 2018 Bloomberg LP. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
desc: >
|
|
It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
|
async method
|
|
template: delete-error
|
|
features: [class-methods-private, async-functions]
|
|
---*/
|
|
|
|
//- expression
|
|
this.#m
|
|
|
|
//- functiondeclaration
|
|
async #m() {}
|