File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -783,7 +783,7 @@ const EasyCoder_Core = {
783
783
run : program => {
784
784
const command = program [ program . pc ] ;
785
785
if ( program . verifySymbol ( command . label ) ) {
786
- program . programtack . push ( program . pc + 1 ) ;
786
+ program . programStack . push ( program . pc + 1 ) ;
787
787
return program . symbols [ command . label ] . pc ;
788
788
}
789
789
program . runtimeError ( command . lino , `Unknown symbol '${ command . label } '` ) ;
Original file line number Diff line number Diff line change @@ -783,7 +783,7 @@ const EasyCoder_Core = {
783
783
run : program => {
784
784
const command = program [ program . pc ] ;
785
785
if ( program . verifySymbol ( command . label ) ) {
786
- program . programtack . push ( program . pc + 1 ) ;
786
+ program . programStack . push ( program . pc + 1 ) ;
787
787
return program . symbols [ command . label ] . pc ;
788
788
}
789
789
program . runtimeError ( command . lino , `Unknown symbol '${ command . label } '` ) ;
You can’t perform that action at this time.
0 commit comments