2019-09-20 20:27:03 +02:00
|
|
|
// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
esid: pending
|
|
|
|
description: >
|
|
|
|
It is a Syntax Error if we declare a private instance getter and private static setter
|
|
|
|
features: [class-static-methods-private, class-methods-private]
|
|
|
|
negative:
|
|
|
|
phase: parse
|
|
|
|
type: SyntaxError
|
|
|
|
---*/
|
|
|
|
|
|
|
|
$DONOTEVALUATE();
|
|
|
|
|
|
|
|
class C {
|
2021-04-10 02:13:41 +02:00
|
|
|
get #f() {}
|
2019-09-20 20:27:03 +02:00
|
|
|
static set #f(v) {}
|
|
|
|
}
|
|
|
|
|