blob: 6ae6b52c5bad63171426a26c477cab5cba98508b [file] [log] [blame] [edit]
// Copyright (C) 2018 Leo Balter. 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 CallExpression.PrivateName
no referencing class element
template: delete-error
---*/
//- infieldsetup
g = this.f;
//- infunctionsetup
var g = this.f;
//- expression
g().#m
//- functiondeclaration
f() {
return this;
}