blob: 25b883759d0976f5025d8a9efced407e5dd8873c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-binary-bitwise-operators-runtime-semantics-evaluation
description: >
?? doesn't special-case [[IsHTMLDDA]] object; rval is not evaluated.
info: |
CoalesceExpression : CoalesceExpressionHead ?? BitwiseORExpression
1. Let lref be the result of evaluating CoalesceExpressionHead.
2. Let lval be ? GetValue(lref).
3. If lval is undefined or null, then
[...]
4. Otherwise, return lval.
features: [IsHTMLDDA, coalesce-expression]
---*/
var IsHTMLDDA = $262.IsHTMLDDA;
assert.sameValue(IsHTMLDDA ?? unresolved, IsHTMLDDA);
reportCompare(0, 0);
|