diff --git a/compiler/utils/pas2js/dist/rtl.js b/compiler/utils/pas2js/dist/rtl.js index cf08ce6..e0b9395 100644 --- a/compiler/utils/pas2js/dist/rtl.js +++ b/compiler/utils/pas2js/dist/rtl.js @@ -1042,7 +1042,8 @@ var rtl = { arrayInsert: function(item, arr, index){ if (arr){ - return arr.splice(index,0,item); + arr.splice(index,0,item); + return arr; } else { return [item]; }