Eine aufbereitete Darstellung der Quelle

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

Benutzer

Quelle  throwOnCallConstructor.js

  Sprache: JAVA
 

// Count constructor calls
var cnt = 0;
class Base { constructor() { ++cnt; } }

// Force |JSFunction->hasScript()|
new Base();
assertEq(cnt, 1);

// Calling a ClassConstructor must throw
(function() {
    function f() { Base(); }
    try { f() } catch (e) {}
    try { f() } catch (e) {}
    assertEq(cnt, 1);
})();

// Spread-calling a ClassConstructor must throw
(function() {
    function f() { Base(...[]); }
    try { f() } catch (e) {}
    try { f() } catch (e) {}
    assertEq(cnt, 1);
})();

// Function.prototype.call must throw on ClassConstructor
(function() {
    function f() { Base.call(null); }
    try { f() } catch (e) {}
    try { f() } catch (e) {}
    assertEq(cnt, 1);
})();

// Function.prototype.apply must throw on ClassConstructor
(function() {
    function f() { Base.apply(null, []); }
    try { f() } catch (e) {}
    try { f() } catch (e) {}
    assertEq(cnt, 1);
})();

// Getter must throw if it is a ClassConstructor
(function() {
    var o = {};
    Object.defineProperty(o, "prop", { get: Base });
    function f() { o.prop };
    try { f() } catch (e) {}
    try { f() } catch (e) {}
    assertEq(cnt, 1);
})();

// Setter must throw if it is a ClassConstructor
(function() {
    var o = {};
    Object.defineProperty(o, "prop", { set: Base });
    function f() { o.prop = 1 };
    try { f() } catch (e) {}
    try { f() } catch (e) {}
    assertEq(cnt, 1);
})();

// Proxy apply must throw if it is a ClassConstructor
(function() {
    var o = new Proxy(function() { }, { apply: Base });
    function f() { o() };
    try { f() } catch (e) {}
    try { f() } catch (e) {}
    assertEq(cnt, 1);
})();

// Proxy get must throw if it is a ClassConstructor
(function() {
    var o = new Proxy({}, { get: Base });
    function f() { o.x }
    try { f() } catch (e) {}
    try { f() } catch (e) {}
    assertEq(cnt, 1);
})();

Messung V0.5 in Prozent
C=89 H=100 G=94

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet am  2026-06-06) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik