mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
Adding test coverage for 'OptionalChain'.PrivateIdentifier case (#2534)
This commit is contained in:
parent
344612b592
commit
db6f630e65
40
src/class-elements/private-field-after-optional-chain.case
Normal file
40
src/class-elements/private-field-after-optional-chain.case
Normal file
@ -0,0 +1,40 @@
|
||||
// Copyright (C) 2020 Caio Lima (Igalia SL). All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
desc: OptionalChain.PrivateIdentifier is a valid syntax
|
||||
info: |
|
||||
Updated Productions
|
||||
|
||||
OptionalChain[Yield, Await] :
|
||||
`?.` `[` Expression[+In, ?Yield, ?Await] `]`
|
||||
`?.` IdentifierName
|
||||
`?.` Arguments[?Yield, ?Await]
|
||||
`?.` TemplateLiteral[?Yield, ?Await, +Tagged]
|
||||
OptionalChain[?Yield, ?Await] `[` Expression[+In, ?Yield, ?Await] `]`
|
||||
OptionalChain[?Yield, ?Await] `.` IdentifierName
|
||||
OptionalChain[?Yield, ?Await] Arguments[?Yield, ?Await]
|
||||
OptionalChain[?Yield, ?Await] TemplateLiteral[?Yield, ?Await, +Tagged]
|
||||
OptionalChain[?Yield, ?Await] `.` PrivateIdentifier
|
||||
template: default
|
||||
features: [class-fields-private, optional-chaining]
|
||||
---*/
|
||||
|
||||
//- elements
|
||||
#f = 'Test262';
|
||||
|
||||
method(o) {
|
||||
return o?.c.#f;
|
||||
}
|
||||
//- assertions
|
||||
let c = new C();
|
||||
let o = {c: c};
|
||||
assert.sameValue(c.method(o), 'Test262');
|
||||
|
||||
assert.sameValue(c.method(null), undefined);
|
||||
assert.sameValue(c.method(undefined), undefined);
|
||||
|
||||
o = {c: new Object()};
|
||||
assert.throws(TypeError, function() {
|
||||
c.method(o);
|
||||
}, 'accessed private field from an ordinary object');
|
@ -0,0 +1,44 @@
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-field-after-optional-chain.case
|
||||
// - src/class-elements/default/cls-expr.template
|
||||
/*---
|
||||
description: OptionalChain.PrivateIdentifier is a valid syntax (field definitions in a class expression)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields-private, optional-chaining, class]
|
||||
flags: [generated]
|
||||
info: |
|
||||
Updated Productions
|
||||
|
||||
OptionalChain[Yield, Await] :
|
||||
`?.` `[` Expression[+In, ?Yield, ?Await] `]`
|
||||
`?.` IdentifierName
|
||||
`?.` Arguments[?Yield, ?Await]
|
||||
`?.` TemplateLiteral[?Yield, ?Await, +Tagged]
|
||||
OptionalChain[?Yield, ?Await] `[` Expression[+In, ?Yield, ?Await] `]`
|
||||
OptionalChain[?Yield, ?Await] `.` IdentifierName
|
||||
OptionalChain[?Yield, ?Await] Arguments[?Yield, ?Await]
|
||||
OptionalChain[?Yield, ?Await] TemplateLiteral[?Yield, ?Await, +Tagged]
|
||||
OptionalChain[?Yield, ?Await] `.` PrivateIdentifier
|
||||
|
||||
---*/
|
||||
|
||||
|
||||
var C = class {
|
||||
#f = 'Test262';
|
||||
|
||||
method(o) {
|
||||
return o?.c.#f;
|
||||
}
|
||||
}
|
||||
|
||||
let c = new C();
|
||||
let o = {c: c};
|
||||
assert.sameValue(c.method(o), 'Test262');
|
||||
|
||||
assert.sameValue(c.method(null), undefined);
|
||||
assert.sameValue(c.method(undefined), undefined);
|
||||
|
||||
o = {c: new Object()};
|
||||
assert.throws(TypeError, function() {
|
||||
c.method(o);
|
||||
}, 'accessed private field from an ordinary object');
|
@ -0,0 +1,44 @@
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-field-after-optional-chain.case
|
||||
// - src/class-elements/default/cls-decl.template
|
||||
/*---
|
||||
description: OptionalChain.PrivateIdentifier is a valid syntax (field definitions in a class declaration)
|
||||
esid: prod-FieldDefinition
|
||||
features: [class-fields-private, optional-chaining, class]
|
||||
flags: [generated]
|
||||
info: |
|
||||
Updated Productions
|
||||
|
||||
OptionalChain[Yield, Await] :
|
||||
`?.` `[` Expression[+In, ?Yield, ?Await] `]`
|
||||
`?.` IdentifierName
|
||||
`?.` Arguments[?Yield, ?Await]
|
||||
`?.` TemplateLiteral[?Yield, ?Await, +Tagged]
|
||||
OptionalChain[?Yield, ?Await] `[` Expression[+In, ?Yield, ?Await] `]`
|
||||
OptionalChain[?Yield, ?Await] `.` IdentifierName
|
||||
OptionalChain[?Yield, ?Await] Arguments[?Yield, ?Await]
|
||||
OptionalChain[?Yield, ?Await] TemplateLiteral[?Yield, ?Await, +Tagged]
|
||||
OptionalChain[?Yield, ?Await] `.` PrivateIdentifier
|
||||
|
||||
---*/
|
||||
|
||||
|
||||
class C {
|
||||
#f = 'Test262';
|
||||
|
||||
method(o) {
|
||||
return o?.c.#f;
|
||||
}
|
||||
}
|
||||
|
||||
let c = new C();
|
||||
let o = {c: c};
|
||||
assert.sameValue(c.method(o), 'Test262');
|
||||
|
||||
assert.sameValue(c.method(null), undefined);
|
||||
assert.sameValue(c.method(undefined), undefined);
|
||||
|
||||
o = {c: new Object()};
|
||||
assert.throws(TypeError, function() {
|
||||
c.method(o);
|
||||
}, 'accessed private field from an ordinary object');
|
Loading…
x
Reference in New Issue
Block a user