Deleting previously valid generated tests

This commit is contained in:
Rick Waldron 2020-04-02 11:57:10 -04:00
parent 539c001941
commit 62b8fce389
2 changed files with 0 additions and 58 deletions

View File

@ -1,29 +0,0 @@
// This file was procedurally generated from the following sources:
// - src/class-elements/grammar-private-field-optional-chaining.case
// - src/class-elements/syntax/invalid/cls-expr-elements-invalid-syntax.template
/*---
description: PrivateName after '?.' is not valid syntax (class expression)
esid: prod-ClassElement
features: [class-fields-private, optional-chaining, class]
flags: [generated]
negative:
phase: parse
type: SyntaxError
info: |
Updated Productions
MemberExpression[Yield]:
MemberExpression[?Yield].PrivateName
---*/
$DONOTEVALUATE();
var C = class {
#m = 'test262';
access(obj) {
return obj?.#m;
}
};

View File

@ -1,29 +0,0 @@
// This file was procedurally generated from the following sources:
// - src/class-elements/grammar-private-field-optional-chaining.case
// - src/class-elements/syntax/invalid/cls-decl-elements-invalid-syntax.template
/*---
description: PrivateName after '?.' is not valid syntax (class declaration)
esid: prod-ClassElement
features: [class-fields-private, optional-chaining, class]
flags: [generated]
negative:
phase: parse
type: SyntaxError
info: |
Updated Productions
MemberExpression[Yield]:
MemberExpression[?Yield].PrivateName
---*/
$DONOTEVALUATE();
class C {
#m = 'test262';
access(obj) {
return obj?.#m;
}
}