Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 667 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 667 Bytes

Codilizer is a simple code visualizer for JavaScript. It visualizes the execution of simple statements.

How can I use it?

You can try it out from here

Supported statements:

  • Variable declaration with var keyword - only var
  • if statements
  • while loop statement
  • for loop statement
  • Nearly all expressions are supported, except for assigment operators only simple one is supported ("+=","-=", "*=", ...etc are not supported)

Used tools:

  • ANTLR for generating the JavaScript parser
  • Monaco editor the text editor that powers VS Code