Skip to content

atolmachev/swd-interpreter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

swd-interpreter

In this task you develop a small parser and interpreter of a simple mathcad-like language Based on existing codebase you will:

  1. (Done) Support parsing and evaluation of simple arithmetic expressions

   (2 + 1) + (12)

Expression grammar is defined the following way:

    Expr -> Const | (Expr) | Expr + Expr
    Const -> \d+
  1. Support variables

    var x = 234 + 45
    var a = x + 12

Updated grammar:

    Expr -> Const | Var | (Expr) | Expr + Expr
    Var -> \w+
    Assign -> var Var = Expr 
    Stmt = Expr | Assign
  1. Support scoping

    var x = 2 + 6 // x == 8 
        var y = x + 8 // new scope, y == 16
        var x = 0 // local scoped x
        var q = x + 7 // q == 7
    var z = x + 1 //z == 9

While interpreting, program should print every var value daclaration

  1. Develop simple API to allow program static analysis

Examples (implement any 1):

  • Calculate number of vars in program
  • Calculate numer of addition operator usages
  • Calculate number of parenthis in program
  • ...

About

Parser and interpreter of a simple mathcad-like language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages