File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -944,13 +944,17 @@ class Extension {
944944 return ( util . thread . _jwArrayForEach && util . thread . _jwArrayForEach [ util . thread . _jwArrayForEach . length - 1 ] ) ? util . thread . _jwArrayForEach [ util . thread . _jwArrayForEach . length - 1 ] [ 1 ] : ""
945945 }
946946
947- forEach ( { ARRAY } , util ) {
947+ forEach ( ) {
948948 return 'noop'
949949 }
950950
951951 forEachBreak ( { } , util ) {
952952 util . stackFrame . entry = [ ]
953953 }
954+
955+ basicSort ( ) {
956+ return 'noop'
957+ }
954958}
955959
956960module . exports = Extension
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ const jwScope = {
5454 }
5555 }
5656 return false
57- }
57+ } ,
5858
5959 reset ( array ) {
6060 for ( let i = array . length - 1 ; i >= 0 ; i -- ) {
@@ -64,7 +64,7 @@ const jwScope = {
6464
6565 depth ( array ) {
6666 return array . length
67- }
67+ } ,
6868
6969 current ( array ) {
7070 let set = new Set ( )
@@ -315,10 +315,18 @@ class Extension {
315315 return 'noop'
316316 }
317317
318+ has ( ) {
319+ return 'noop'
320+ }
321+
318322 reset ( ) {
319323 return 'noop'
320324 }
321325
326+ depth ( ) {
327+ return 'noop'
328+ }
329+
322330 current ( ) {
323331 return 'noop'
324332 }
You can’t perform that action at this time.
0 commit comments