Skip to content
Snippets Groups Projects
err-delete-member-expression-private-method-async.case 347 B
// 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
template: delete-error
features: [class-methods-private]
---*/

//- expression
this.#m

//- functiondeclaration
async #m() {}