All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rhino1.7.7.testsrc.tests.ecma_3.Unicode.uc-003.js Maven / Gradle / Ivy

Go to download

Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end users.

There is a newer version: 1.7.15
Show newest version
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

var gTestfile = 'uc-003.js';

test();

function test()
{
  enterFunc ("test");

  var \u0041 = 5;
  var A\u03B2 = 15;
  var c\u0061se = 25;

  printStatus ("Escapes in identifiers test.");
  printBugNumber (23608);
  printBugNumber (23607);

  reportCompare (5, eval("\u0041"),
		 "Escaped ASCII Identifier test.");
  reportCompare (6, eval("++\u0041"),
		 "Escaped ASCII Identifier test");
  reportCompare (15, eval("A\u03B2"),
		 "Escaped non-ASCII Identifier test");
  reportCompare (16, eval("++A\u03B2"),
		 "Escaped non-ASCII Identifier test");
  reportCompare (25, eval("c\\u00" + "61se"),
		 "Escaped keyword Identifier test");
  reportCompare (26, eval("++c\\u00" + "61se"),
		 "Escaped keyword Identifier test");
   
  exitFunc ("test");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy