Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Impressum evals.js   Interaktion und
PortierbarkeitJAVA

 
// Test that we can save stacks with direct and indirect eval calls.

const directEval = (function iife() {
  return eval("(" + function evalFrame() {
    return saveStack();
  } + "())");
}());

assertEq(directEval.source.includes("> eval"), true);
assertEq(directEval.functionDisplayName, "evalFrame");

assertEq(directEval.parent.source.includes("> eval"), true);

assertEq(directEval.parent.parent.source.includes("> eval"), false);
assertEq(directEval.parent.parent.functionDisplayName, "iife");

assertEq(directEval.parent.parent.parent.source.includes("> eval"), false);

assertEq(directEval.parent.parent.parent.parent, null);

const lave = eval;
const indirectEval = (function iife() {
  return lave("(" + function evalFrame() {
    return saveStack();
  } + "())");
}());

assertEq(indirectEval.source.includes("> eval"), true);
assertEq(indirectEval.functionDisplayName, "evalFrame");

assertEq(indirectEval.parent.source.includes("> eval"), true);

assertEq(indirectEval.parent.parent.source.includes("> eval"), false);
assertEq(indirectEval.parent.parent.functionDisplayName, "iife");

assertEq(indirectEval.parent.parent.parent.source.includes("> eval"), false);

assertEq(indirectEval.parent.parent.parent.parent, null);

Messung V0.5
C=92 H=72 G=82

¤ 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.0.3Bemerkung:  ¤

*Eine klare Vorstellung vom Zielzustand






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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.