mirror of
https://github.com/tc39/test262.git
synced 2025-12-05 21:09:47 +01:00
16 lines
371 B
Plaintext
16 lines
371 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
|
|
private ordinary method
|
|
template: delete-error
|
|
features: [class-methods-private]
|
|
---*/
|
|
|
|
//- expression
|
|
this.#m
|
|
|
|
//- functiondeclaration
|
|
#m() {} |