File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ const EasyCoder_Core = {
586
586
compile : compiler => {
587
587
const lino = compiler . getLino ( ) ;
588
588
const rate = compiler . getNextValue ( ) ;
589
- const m = compiler . peek ( ) ;
589
+ const m = compiler . getToken ( ) ;
590
590
let multiplier = 1000 ;
591
591
if ( [ `minute` ,
592
592
`minutes` ,
@@ -608,8 +608,8 @@ const EasyCoder_Core = {
608
608
multiplier = 10 ;
609
609
break ;
610
610
}
611
+ compiler . next ( ) ;
611
612
}
612
- compiler . next ( ) ;
613
613
compiler . addCommand ( {
614
614
domain : `core` ,
615
615
keyword : `every` ,
Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ const EasyCoder_Core = {
586
586
compile : compiler => {
587
587
const lino = compiler . getLino ( ) ;
588
588
const rate = compiler . getNextValue ( ) ;
589
- const m = compiler . peek ( ) ;
589
+ const m = compiler . getToken ( ) ;
590
590
let multiplier = 1000 ;
591
591
if ( [ `minute` ,
592
592
`minutes` ,
@@ -608,8 +608,8 @@ const EasyCoder_Core = {
608
608
multiplier = 10 ;
609
609
break ;
610
610
}
611
+ compiler . next ( ) ;
611
612
}
612
- compiler . next ( ) ;
613
613
compiler . addCommand ( {
614
614
domain : `core` ,
615
615
keyword : `every` ,
You can’t perform that action at this time.
0 commit comments