2018-09-11 20:46:22 +02:00
|
|
|
// Copyright (C) 2018 Bloomberg LP. All rights reserved.
|
2017-10-25 18:56:00 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
2018-11-08 00:13:15 +01:00
|
|
|
desc: >
|
|
|
|
It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
|
|
|
async generator
|
2017-10-25 18:56:00 +02:00
|
|
|
template: delete-error
|
2018-11-08 00:13:15 +01:00
|
|
|
features: [class-methods-private, async-iteration]
|
2017-10-25 18:56:00 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
//- expression
|
2018-09-11 20:46:22 +02:00
|
|
|
this.#m
|
|
|
|
|
|
|
|
//- functiondeclaration
|
2018-11-08 00:13:15 +01:00
|
|
|
async *#m() {}
|