• Home
  • Raw
  • Download

Lines Matching refs:getFunction

1520 function getFunction(name, jsBuiltin, len) {  function
1534 "entries": getFunction("entries", null, 0),
1535 "forEach": getFunction("forEach", ArrayForEach, 1),
1536 "keys": getFunction("keys", null, 0),
1537 "values": getFunction("values", null, 0)
1545 "toString", getFunction("toString", ArrayToString),
1546 "toLocaleString", getFunction("toLocaleString", ArrayToLocaleString),
1547 "join", getFunction("join", ArrayJoin),
1548 "pop", getFunction("pop", ArrayPop),
1549 "push", getFunction("push", ArrayPush, 1),
1550 "reverse", getFunction("reverse", ArrayReverse),
1551 "shift", getFunction("shift", ArrayShift),
1552 "unshift", getFunction("unshift", ArrayUnshift, 1),
1553 "slice", getFunction("slice", ArraySlice, 2),
1554 "splice", getFunction("splice", ArraySplice, 2),
1555 "sort", getFunction("sort", ArraySort),
1556 "filter", getFunction("filter", ArrayFilter, 1),
1557 "some", getFunction("some", ArraySome, 1),
1558 "every", getFunction("every", ArrayEvery, 1),
1559 "map", getFunction("map", ArrayMap, 1),
1560 "indexOf", getFunction("indexOf", null, 1),
1561 "lastIndexOf", getFunction("lastIndexOf", ArrayLastIndexOf, 1),
1562 "reduce", getFunction("reduce", ArrayReduce, 1),
1563 "reduceRight", getFunction("reduceRight", ArrayReduceRight, 1),
1564 "copyWithin", getFunction("copyWithin", ArrayCopyWithin, 2),
1565 "find", getFunction("find", ArrayFind, 1),
1566 "findIndex", getFunction("findIndex", ArrayFindIndex, 1),
1567 "fill", getFunction("fill", ArrayFill, 1),
1568 "includes", getFunction("includes", null, 1),
1588 "indexOf", getFunction("indexOf", null),
1589 "join", getFunction("join", ArrayJoin),
1590 "pop", getFunction("pop", ArrayPop),
1591 "push", getFunction("push", ArrayPush),
1592 "shift", getFunction("shift", ArrayShift),
1593 "sort", getFunction("sort", ArraySort),
1594 "splice", getFunction("splice", ArraySplice)
1598 "join", getFunction("join", ArrayJoin),
1599 "pop", getFunction("pop", ArrayPop),
1600 "push", getFunction("push", ArrayPush),
1601 "shift", getFunction("shift", ArrayShift)
1607 "push", getFunction("push", ArrayPush),
1608 "pop", getFunction("pop", ArrayPop),
1609 "shift", getFunction("shift", ArrayShift),
1610 "unshift", getFunction("unshift", ArrayUnshift),
1611 "splice", getFunction("splice", ArraySplice),
1612 "slice", getFunction("slice", ArraySlice)