Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/LibreOffice/offapi/com/sun/star/ui/   (Firefox Browser Version 136.0.1©)  Datei vom 5.10.2025 mit Größe 1 kB image not shown  

Quellcode-Bibliothek getter-hook-1.js   Sprache: unbekannt

 
// GETPROP PIC with multiple stubs containing getter hooks.

function foo(arr) {
  for (var i = 0; i < 100; i++)
    arr[i].caller;
}
arr = Object.create(Object.prototype);
first = Object.create({});
first.caller = null;
second = Object.create({});
second.caller = null;
for (var i = 0; i < 100; ) {
  arr[i++] = first;
  arr[i++] = foo;
  arr[i++] = second;
}
foo.caller;
foo(arr);

Messung V0.5 in Prozent
C=95 H=43 G=73

[0.9QuellennavigatorsProjekt 2026-06-08]