blob: c01f611902b1e11589213c3f5eb34dc0c3047028 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
load("test-common.js");
try {
var x = 1;
assert(x === 1 ? true : false);
assert((x ? x : 0) === x);
assert(1 < 2 ? (true) : (false));
assert((0 ? 1 : 1 ? 10 : 20) === 10);
assert((0 ? 1 ? 1 : 10 : 20) === 20);
var o = {};
o.f = true;
assert(o.f ? true : false);
assert(1 ? o.f : null);
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}
|