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

Lexer

The Lexer uses acorn, acorn-walk, and escodegen to replace the identifiers.

The Lexer is mainly used for two things:

Lexer Variable Types

There are categorization to the variables that are found by the Lexer:

Lexer Usage

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']