Skip to content

Releases: regeda/expr

New Lexer

Choose a tag to compare

@regeda regeda released this 24 Jun 16:08
db46f6c
  1. The lexer generates a syntax tree during the input parsing.
  2. Basic math operators +-*/ were introduced. It enables you to use math in your expressions:
1 + 2
2 * (1 + -199)

New memory model

Choose a tag to compare

@regeda regeda released this 10 May 08:14
1cda551
  • Remove memory hard limits
  • Array of arrays support
  • The equals delegator supports arrays

First version

Choose a tag to compare

@regeda regeda released this 09 Mar 09:18

The first release contains the basic toolchain:

  • compilation the expression language into bytecode
  • bytecode executing by the virtual machine