0
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 14 hours ago. based on code collected 1 day ago.
May 16, 2023 — May 16, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
[no comment] More... over 11 years ago
simplified a few more YACC definitions and moved to 0.9.9.13 More... over 11 years ago
read through yacc parser to make sure consistent. made a few corrections and simplifications. More... over 11 years ago
made function and subroutine variables local in their recursion context and added garbage collection of local variables when a function/subroutine returns More... over 11 years ago
Fixed bug in By Ref arguments when assigning a referencing variable the second time. More... over 11 years ago
Added REF() argument definition on functions and subroutines to pass a variable by reference. When called the variable must be dereferenced with REF(). See Examples/testing/testsubroutinebyref.kbs More... over 11 years ago
[no comment] More... over 11 years ago
Finished ++.-- statements for arrays (1d and 2d More... over 11 years ago
Added v+= v$+= v-= v*= v/* v++ and v-- statements for shortcutting operations like in visual basic and other languages More... over 11 years ago
[no comment] More... over 11 years ago
added OPENB statement to open files in a binary safe mode More... over 11 years ago
Added READBYTE and WRITEBYTE to read one byte at a time as an integer number. Need to test with WINDOWS as file was opened in text mode and CR may be read in as CRLF. More... over 11 years ago
Added runtime error trapping for division by zero More... over 11 years ago
added better compile time errors when assigning a string to a numeric variable and number to string. More... over 11 years ago
added logic to limit levels of recursion to the same limit as variable table. currently 1023 More... over 11 years ago
fixed stack height 0.9.9.4 More... over 11 years ago
Update stack.cpp with Fernando ApesteguĂ­a's patch for compiling on 64bit. More... over 11 years ago
added errors if goto/gosub/ or label are defined or used inside a function or subroutine. updated version to 0.9.9.2 More... over 11 years ago
Updated version number to 0.9.9.1 in anticipation of 1.0 after some user testing. All example programs work and new programs with new features work. More... over 11 years ago
[no comment] More... over 11 years ago
Added variable name to errormessages with variables. Removed variabls symbol table from end causing problems with the goto/gosub jumps. More... over 11 years ago
Found bug in return in a function with function symbol throwing unknown variable. Added dump of symbol table to end of byte code - we can add better error messages later. More... over 11 years ago
[no comment] More... over 11 years ago
Includes functions and subroutines, stack underflow issues now have error trap. Need to tighten parser to watch for mal formed function/endfunction. More... over 11 years ago
[no comment] More... over 11 years ago
continued work with functions. local variables in functions work, string functions, numeric functions, functions returning values. need to work on passing values to functions - not there. More... over 11 years ago
Started thinking about functions. Added to lex. More... over 11 years ago
[no comment] More... over 11 years ago
Finished and refined compile time errors for IF THEN, DO, WHILE, END IF, END WHILE, UNTIL, FOR, NEXT, and ELSE if they do hot have a matching opening or closing statement. Does not check variable in FOR/NEXT just that the right statement is nested next. More... over 11 years ago
Added compile time errors for IF THEN, DO, WHILE, END IF, END WHILE, UNTIL, and ELSE if they do hot have a matching opening or closing statement. More... over 11 years ago