File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1152,7 +1152,7 @@ const EasyCoder_Core = {
1152
1152
if ( ! target . isVHolder ) {
1153
1153
program . variableDoesNotHoldAValueError ( command . lino , target . name ) ;
1154
1154
}
1155
- const value = program . getValue ( program . dataStack . pop ( ) ) ;
1155
+ const value = program . dataStack . pop ( ) ;
1156
1156
target . value [ target . index ] = {
1157
1157
type : value . type ,
1158
1158
numeric : value . numeric ,
@@ -1205,7 +1205,7 @@ const EasyCoder_Core = {
1205
1205
1206
1206
run : program => {
1207
1207
const command = program [ program . pc ] ;
1208
- program . dataStack . push ( command . value ) ;
1208
+ program . dataStack . push ( program . getValue ( command . value ) ) ;
1209
1209
return command . pc + 1 ;
1210
1210
}
1211
1211
} ,
Original file line number Diff line number Diff line change @@ -1152,7 +1152,7 @@ const EasyCoder_Core = {
1152
1152
if ( ! target . isVHolder ) {
1153
1153
program . variableDoesNotHoldAValueError ( command . lino , target . name ) ;
1154
1154
}
1155
- const value = program . getValue ( program . dataStack . pop ( ) ) ;
1155
+ const value = program . dataStack . pop ( ) ;
1156
1156
target . value [ target . index ] = {
1157
1157
type : value . type ,
1158
1158
numeric : value . numeric ,
@@ -1205,7 +1205,7 @@ const EasyCoder_Core = {
1205
1205
1206
1206
run : program => {
1207
1207
const command = program [ program . pc ] ;
1208
- program . dataStack . push ( command . value ) ;
1208
+ program . dataStack . push ( program . getValue ( command . value ) ) ;
1209
1209
return command . pc + 1 ;
1210
1210
}
1211
1211
} ,
You can’t perform that action at this time.
0 commit comments