/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* * *Date:29Oct2002 *SUMMARY:Testing"use"and"set"operationsonexpressionslikea[i][j][k] *Seehttp://bugzilla.mozilla.org/show_bug.cgi?id=96526#c52 * *Brendan:"Theideaistocoverallthe'use'and'set'(asinmodify) *operationsyoucandoonanexpressionlikea[i][j][k],includingvariations *whereyoureplace|a|witharguments(literally)and|i|with0,1,2,etc. *(tohittheoptimizationforarguments[0]...thatusesJSOP_ARGSUB)."
*/ //----------------------------------------------------------------------------- var UBound = 0; var BUGNUMBER = 96526; var summary = 'Testing "use" and "set" ops on expressions like a[i][j][k]'; var status = ''; var statusitems = []; var actual = ''; var actualvalues = []; var expect= ''; var expectedvalues = [];
var z='magic';
Number.prototype.magic=42;
status = inSection(1);
actual = f(2,1,[1,2,[3,4]]);
expect = 42;
addThis();
function f(j,k)
{
status = inSection(2);
actual = formatArray(arguments[2]);
expect = formatArray([1,2,[3,4]]);
addThis();
status = inSection(3);
actual = formatArray(arguments[2][j]);
expect = formatArray([3,4]);
addThis();
status = inSection(4);
actual = arguments[2][j][k];
expect = 4;
addThis();
status = inSection(5);
actual = arguments[2][j][k][z];
expect = 42;
addThis();
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.