Skip to content

a simple language interpreter built on golang, to understand how languages are read and executed

Notifications You must be signed in to change notification settings

Luisgustavom1/go-language-scheme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How a programming language works?

Three main concepts:

  • Lexer
  • Parser
  • Interpreters

Those parts form like a "pipeline", where the code is treated and separated

Steps of a programming language One more diagram

Lexer (Lexical Analysis)

Lexer is the element that takes the code and transform into tokens.

Token is basically each char from our text, with a metadata assigned to it.

Example:

12 + (2 * 2)

Tokens ->

   {
    value: 12
    type: number
   }
  
   {
    value: "+"
    type: plus
   }
   
   {
    value: "("
    type: symbol
   }
   
   {
    value: 2
    type: number
   }
   
   {
    value: "*"
    type: multiplication
   }
   
   {
    value: 2
    type: number
   }
   
   {
    value: ")"
    type: symbol
   }

How lexer step works

Parser (Syntax Analysis)

The parser takes the tokens generated by lexer, and builds an object structure that tries to reflects the way our code is structured, all the variables, functions, statements, etc.

This object structure are called the Abstract Syntax Tree (AST)

This step is very important for all compilation pipelines, how the AST represent the high level form (code) in a lower lever form (tree), so can be analyzed more easily, because of its structured shape.

AST allows us to make a platform-agnostic analysis of our program, since it has to maintain a standard, so we can use any language or platform to interpret the AST.

How parser step works

Interpreter (Evaluator)

In this step we will transversing under our AST, interpreter it, that is, we will take each token sub tree or a set of tokens and evaluate what value your interaction produces.

Interaction between tokens of type syntax, integer, identifier, etc. This list depends on the complexity of the language.

Evaluation is the process that infer an value of a some calculation or in our language the result of the expressions

References:

About

a simple language interpreter built on golang, to understand how languages are read and executed

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages