js/src/tests/ecma/LexicalConventions/7.4.3-3-n.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:389dcf5220f3
1 // |reftest| skip -- obsolete test
2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6
7
8 /**
9 File Name: 7.4.3-3-n.js
10 ECMA Section: 7.4.3
11
12 Description:
13 The following words are used as keywords in proposed extensions and are
14 therefore reserved to allow for the possibility of future adoption of
15 those extensions.
16
17 FutureReservedWord :: one of
18 case debugger export super
19 catch default extends switch
20 class do finally throw
21 const enum import try
22
23 Author: christine@netscape.com
24 Date: 12 november 1997
25 */
26 var SECTION = "7.4.3-3-n";
27 var VERSION = "ECMA_1";
28 startTest();
29 var TITLE = "Future Reserved Words";
30
31 writeHeaderToLog( SECTION + " "+ TITLE);
32
33 DESCRIPTION = "var export = true";
34 EXPECTED = "error";
35
36 new TestCase( SECTION, "var export = true", "error", eval("var export = true") );
37
38 test();

mercurial