porffor 0.58.5 → 0.58.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/builtins/array.ts +1 -1
- package/compiler/builtins/regexp.ts +630 -22
- package/compiler/builtins_precompiled.js +403 -403
- package/compiler/wrap.js +120 -2
- package/foo.js +5 -0
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/runtime/index.js +1 -1
@@ -536,7 +536,7 @@ export const __Array_prototype_findIndex = (_this: any[], callbackFn: any, thisA
|
|
536
536
|
};
|
537
537
|
|
538
538
|
// @porf-typed-array
|
539
|
-
export const __Array_prototype_findLastIndex = (_this: any[],
|
539
|
+
export const __Array_prototype_findLastIndex = (_this: any[], callbackFn: any, thisArg: any) => {
|
540
540
|
let i: i32 = _this.length;
|
541
541
|
while (i > 0) {
|
542
542
|
if (!!callbackFn.call(thisArg, _this[--i], i, _this)) return i;
|