Skip to content
This repository has been archived by the owner on Jun 6, 2019. It is now read-only.

Releases: Gisgar3/JeeScript

JeeScript v1.1.0

11 Nov 22:20
Compare
Choose a tag to compare

Changelog

Local Debugging

  • Debugging of JeeScript files can be done using the MODE DEBUG line at the end of the file.

Interpreter

  • Relabeled sections of interpreter-file.
  • Renamed interpreter-file from lexer.py to interpreter.py; interpreter.py includes the lexer, parser, and correction functions.
  • Changed if statement for the debugging mode to elif to prevent command-prompt errors from occurring.
  • Made the interpreter check the file being executed to see if it's a compatible JeeScript file.
  • Added the funcdata variable for use collecting function information.

Command-Prompt/Terminal

  • Debugging can now be enabled via the command-prompt by adding DEBUG to the end of the arguments. This is the equivalent to adding MODE DEBUG within a JeeScript file, but this method is less-dependent on when the tokens are added to the interpreter.

Functions

  • JeeScript's interpreter now comes with a built-in function that can be used by typing LOAD or load. This function allows developers to load separate JeeScript files programmatically for execution.

JeeScript v1.0.0

05 Nov 03:12
1b16288
Compare
Choose a tag to compare
JeeScript v1.0.0 Pre-release
Pre-release

First release of JeeScript!