js/src/tests/js1_5/Regress/regress-68498-002.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 /*
michael@0 7 * Date: 15 Feb 2001
michael@0 8 *
michael@0 9 * SUMMARY: create a Deletable local variable using eval
michael@0 10 *
michael@0 11 * See http://bugzilla.mozilla.org/show_bug.cgi?id=68498
michael@0 12 * See http://bugzilla.mozilla.org/showattachment.cgi?attach_id=25251
michael@0 13 *
michael@0 14 * Brendan:
michael@0 15 *
michael@0 16 * "Demonstrate the creation of a Deletable local variable using eval"
michael@0 17 */
michael@0 18 //-----------------------------------------------------------------------------
michael@0 19 var BUGNUMBER = 68498;
michael@0 20 var summary = 'Creating a Deletable local variable using eval';
michael@0 21 var statprefix = '; currently at expect[';
michael@0 22 var statsuffix = '] within test -';
michael@0 23 var actual = [ ];
michael@0 24 var expect = [ ];
michael@0 25
michael@0 26
michael@0 27 // Capture a reference to the global object -
michael@0 28 var self = this;
michael@0 29
michael@0 30 // This function is the heart of the test -
michael@0 31 function f(s) {eval(s); actual[0]=y; return delete y;}
michael@0 32
michael@0 33
michael@0 34 // Set the actual-results array. The next line will set actual[0] and actual[1] in one shot
michael@0 35 actual[1] = f('var y = 42');
michael@0 36 actual[2] = 'y' in self && y;
michael@0 37
michael@0 38 // Set the expected-results array -
michael@0 39 expect[0] = 42;
michael@0 40 expect[1] = true;
michael@0 41 expect[2] = false;
michael@0 42
michael@0 43
michael@0 44 //-------------------------------------------------------------------------------------------------
michael@0 45 test();
michael@0 46 //-------------------------------------------------------------------------------------------------
michael@0 47
michael@0 48
michael@0 49 function test()
michael@0 50 {
michael@0 51 enterFunc ('test');
michael@0 52 printBugNumber(BUGNUMBER);
michael@0 53 printStatus (summary);
michael@0 54
michael@0 55 for (var i in expect)
michael@0 56 {
michael@0 57 reportCompare(expect[i], actual[i], getStatus(i));
michael@0 58 }
michael@0 59
michael@0 60 exitFunc ('test');
michael@0 61 }
michael@0 62
michael@0 63
michael@0 64 function getStatus(i)
michael@0 65 {
michael@0 66 return (summary + statprefix + i + statsuffix);
michael@0 67 }

mercurial