Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/tools/include/linux/   (Linux Kernel Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 252 B image not shown  

SSL bug1762575-2.js   Interaktion und
Portierbarkeitunbekannt

 
rahmenlose Ansicht.js DruckansichtUnknown {[0] [0] [0]}Mathematik

// Tests on unmapped arguments objects.

function ArraySlice() {
  "use strict";
  Object.defineProperty(arguments, 0, {value: 1});
  var result = Array.prototype.slice.call(arguments);
  assertEq(result[0], 1);
}
ArraySlice(0);

function ArrayShift() {
  "use strict";
  Object.defineProperty(arguments, 0, {value: 1});
  var result = Array.prototype.shift.call(arguments);
  assertEq(result, 1);
}
ArrayShift(0);

function ArrayPop() {
  "use strict";
  Object.defineProperty(arguments, 0, {value: 1});
  var result = Array.prototype.pop.call(arguments);
  assertEq(result, 1);
}
ArrayPop(0);

function ArrayJoin() {
  "use strict";
  Object.defineProperty(arguments, 0, {value: 1});
  var result = Array.prototype.join.call(arguments);
  assertEq(result, "1");
}
ArrayJoin(0);

function ArrayIncludes() {
  "use strict";
  Object.defineProperty(arguments, 0, {value: 1});
  var result = Array.prototype.includes.call(arguments, 1);
  assertEq(result, true);
}
ArrayIncludes(0);

function FunctionApply() {
  "use strict";
  Object.defineProperty(arguments, 0, {value: 1});
  var id = x => x;
  var result = id.apply(null, arguments);
  assertEq(result, 1);
}
FunctionApply(0);

[Verzeichnis aufwärts0.43unsichere Verbindung]