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


Quelle  shape-teleporting-1.js   Sprache: JAVA

 
// Receiver shadows
(function() {
    function check(p) { return p.x; }

    let a = { x: "a" };
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    d.x = "d";
    assertEq(check(d), "d");
})();

// Intermediate proto shadows
(function() {
    function check(p) { return p.x; }

    let a = { x: "a" };
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    c.x = "c";
    assertEq(check(d), "c");
})();

// Receiver proto changes
(function() {
    function check(p) { return p.x; }

    let a = { x: "a" };
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    d.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Intermediate proto changes
(function() {
    function check(p) { return p.x; }

    let a = { x: "a" };
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    c.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Uncacheable holder proto
(function() {
    function check(p) { return p.x; }

    function Base() { this.x = "a"; }
    let a = new Base;
    a.__proto__ = new Object;
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    b.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Uncacheable intermediate proto
(function() {
    function check(p) { return p.x; }

    function Base() { this.x = "a"; }
    function Node() { }

    let a = new Base;
    let b = new Node; b.__proto__ = a;
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    b.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Uncacheable receiver proto
(function() {
    function check(p) { return p.x; }

    function Base() { this.x = "a"; }
    function Node() { }

    let a = new Base;
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = new Node; d.__proto__ = c;

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    d.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Uncacheable receiver proto (only receiver / holder)
(function() {
    function check(p) { return p.x; }

    function Base() { this.x = "a"; }
    function Node() { }

    let a = new Base;
    let b = new Node; b.__proto__ = a;

    assertEq(check(b), "a");
    assertEq(check(b), "a");
    b.__proto__ = { x: "?" };
    assertEq(check(b), "?");
})();

Messung V0.5
C=94 H=93 G=93

¤ Dauer der Verarbeitung: 0.12 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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge