Home
last modified time | relevance | path

Searched refs:returnLengthStrict (Results 1 – 1 of 1) sorted by relevance

/external/v8/test/mjsunit/harmony/
Dreflect-apply.js62 function returnLengthStrict() { 'use strict'; return arguments.length; } function
65 assertEquals(0, Reflect.apply(returnLengthStrict, this, []));
67 assertEquals(0, Reflect.apply(returnLengthStrict, this, {}));
71 assertEquals(i, Reflect.apply(returnLengthStrict, this, new Array(i)));
73 assertEquals(i, Reflect.apply(returnLengthStrict, this, { length: i }));