mirror of
https://github.com/tc39/test262.git
synced 2025-05-21 23:30:44 +02:00
14 lines
315 B
Plaintext
14 lines
315 B
Plaintext
// Copyright (C) 2018 Rick Waldron. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: prod-ClassElement
|
|
name: class expression
|
|
path: language/expressions/class/fields/syntax/valid/
|
|
features: [class]
|
|
---*/
|
|
|
|
var C = class /*{ heritage }*/{
|
|
/*{ elements }*/
|
|
};
|