The Lexer and Interpreter are one of the most important parts of Mini.js that makes state re-renders work.
The Lexer identifies and replaces the identifiers, while the Interpreter executes it.
Last updated at March 2, 2024 by Joeylene
The Lexer uses acorn, acorn-walk, and escodegen to replace the identifiers.
The Lexer is mainly used for two things:
proxyWindow
to trigger re-renders.
firstName
into proxyWindow.firstName
.el.firstName
into proxyWindow['Entity123'].firstName
scope.firstName
into proxyWindow['Entity123'].firstName
There are categorization to the variables that are found by the Lexer:
Declared - these are variables that were declared or created inside the code.
this
keyword, which is the only declared variable that the Lexer can identify and replace.variables created using const
and let
.
const declaredVar = 'I am declared!'
functions created using the function
keyword.
function declaredFunction() {}
function parameters are considered as declared:
function declaredFunction(param1, param2) {}
the this
keyword
this.stuff
Referenced - these are the variables that were not declared and are just used inside the code.
Referenced variables are the ones that the Lexer identifies and replaces for re-rendering.
Native Functions such like eval
, alert
, setTimeout
, etc, are ignored by the Lexer when identifying variables.
An example of a referenced variable is:
const a = b + c
b
and c
are both referenced variables because you will not find its declaration inside the given code, therefore it is referenced.
The lexer can be use to find and replace identifiers:
Getting the identifiers
To get the identifiers in a given code string, you can use the identifier
property:
const expr = 'showSearch = false'
const lexer = new Lexer(expr)
lexer.identifiers // outputs: ['showSearch']
const expr = 'const arr = [1, 2, a, b]'
const lexer = new Lexer(expr)
lexer.identifiers // outputs: ['a', 'b']