Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/asm.js/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  testBug999790.js   Sprache: JAVA

 
function CanBeConstructed(f) {
    var caught = false;
    try {
        new f;
    } catch (e) {
        caught = true;
    }
    return !caught;
}

function IsConstructedFunction(f) {
    return f.hasOwnProperty('length')
        && f.hasOwnProperty('name')
        && f.hasOwnProperty('prototype')
        && f.prototype.hasOwnProperty('constructor')
        && f.prototype.constructor === f;
}

function IsntConstructedFunction(f) {
    return !f.hasOwnProperty('length')
        && !f.hasOwnProperty('name')
        && !f.hasOwnProperty('prototype')
}

var m = function() {
    "use asm"
    function g(){}
    return g;
};
assertEq(CanBeConstructed(m), true"asm.js modules can't be constructed");

var objM = new m;
assertEq(IsConstructedFunction(objM), true);

var g = m();
assertEq(CanBeConstructed(g), true"asm.js functions can't be constructed");
// g is a ctor returning an primitive value, thus an empty object
assertEq(Object.getOwnPropertyNames(new g).length, 0);

var n = function() {
    "use asm"
    function g(){return 42.0}
    function h(){return 42}
    return {
        g: g,
        h: h
    };
};
assertEq(CanBeConstructed(n), true"asm.js modules can't be constructed");

var objN = new n;
// objN is an object with attributes g and h
assertEq(IsntConstructedFunction(objN), true);
assertEq(objN.hasOwnProperty('g'), true);
assertEq(objN.hasOwnProperty('h'), true);

assertEq(IsConstructedFunction(objN.g), true);
assertEq(IsConstructedFunction(objN.h), true);

var h = n().h;
assertEq(CanBeConstructed(h), true"asm.js functions can't be constructed");
// h is a ctor returning an primitive value, thus an empty object
assertEq(Object.getOwnPropertyNames(new h).length, 0);

assertEq(typeof(function() {"use asm"return {}}.prototype) !== 'undefined'true);

Messung V0.5
C=88 H=92 G=89

¤ Dauer der Verarbeitung: 0.29 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






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.