Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@ghaiklor/tslox

ghaiklor36MIT0.3.0

TypeScript implementation of interpreter for the Lox Language

readme

TSLox

Travis (.com) branch Codecov branch Codacy branch grade GitHub last commit Maintenance GitHub code size in bytes

GitHub followers Twitter Follow

The Lox language implemented in TypeScript.

// TODO: fill in the info

changelog

0.3.0 (2019-05-25)

Features

  • 🎸 implement assign expressions (a6fc9d8)
  • 🎸 implement expression and print statements (2c8f9b2)
  • 🎸 implement lexical scopes (6bdfb29)
  • 🎸 implement variable declaration and expressions (3d4cc5d)

0.2.0 (2019-05-24)

Features

  • 🎸 implement {Binary,Unary}Expression and Literal as AST (5d30317)
  • 🎸 implement interpreter for expressions (d5b0b6f)
  • 🎸 implement parsing binary expressions (4e02ad2)

0.1.0 (2019-05-24)

Features

  • 🎸 implement CLI with a file and REPL interfaces (6f0924b)
  • 🎸 implement remaining lexic constructs (baa10f2)
  • 🎸 implement scanner (ecbc14f)