blob: 25e1339120d2a5cfe953c00b42b343a43e036774 [file] [log] [blame] [edit]
// Copyright (C) 2017 Valerie Young. 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
private field
template: delete-error
---*/
//- infieldsetup
g = this.f;
//- infunctionsetup
var g = this.f;
//- expression
g().#x
//- functiondeclaration
f() {
return this;
}