Coder Social home page Coder Social logo

swd-interpreter's Introduction

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)

ru.spbau.interpreter.Statements.Expressions.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
  • ...

swd-interpreter's People

Contributors

atolmachev avatar muali avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.