summaryrefslogtreecommitdiff
path: root/src/class-fields/productions/cls-decl-wrapped-in-sc.template
blob: ccccf51d7949b289eff4a3efa0e68d247e83d5de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2017 the V8 project authors, 2017 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
path: language/statements/class/fields-wrapped-in-sc-
name: fields definition wrapped in semicolons
features: [class, class-fields-public]
esid: prod-FieldDefinition
---*/

class C {
  ;;;;
  ;;;;;;/*{ fields }*/;;;;;;;
  ;;;;
/*{ privateinspectionfunctions }*/
}

var c = new C();

/*{ assertions }*/