Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /**
8 File Name: 11.12.js
9 ECMA Section: 11.12 Conditional Operator
10 Description:
11 Logi
13 calORExpression ? AssignmentExpression : AssignmentExpression
15 Semantics
17 The production ConditionalExpression :
18 LogicalORExpression ? AssignmentExpression : AssignmentExpression
19 is evaluated as follows:
21 1. Evaluate LogicalORExpression.
22 2. Call GetValue(Result(1)).
23 3. Call ToBoolean(Result(2)).
24 4. If Result(3) is false, go to step 8.
25 5. Evaluate the first AssignmentExpression.
26 6. Call GetValue(Result(5)).
27 7. Return Result(6).
28 8. Evaluate the second AssignmentExpression.
29 9. Call GetValue(Result(8)).
30 10. Return Result(9).
32 Author: christine@netscape.com
33 Date: 12 november 1997
34 */
35 var SECTION = "11.12";
36 var VERSION = "ECMA_1";
37 startTest();
39 writeHeaderToLog( SECTION + " Conditional operator( ? : )");
41 new TestCase( SECTION, "true ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED"));
42 new TestCase( SECTION, "false ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED"));
44 new TestCase( SECTION, "1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED"));
45 new TestCase( SECTION, "0 ? 'FAILED' : 'PASSED'", "PASSED", (false?"FAILED":"PASSED"));
46 new TestCase( SECTION, "-1 ? 'PASSED' : 'FAILED'", "PASSED", (true?"PASSED":"FAILED"));
48 new TestCase( SECTION, "NaN ? 'FAILED' : 'PASSED'", "PASSED", (Number.NaN?"FAILED":"PASSED"));
50 new TestCase( SECTION, "var VAR = true ? , : 'FAILED'", "PASSED", (VAR = true ? "PASSED" : "FAILED") );
52 test();