taeluf/lexer

A declarative lexer seamlessly hooking into php functions, building ASTs for multiple languages.

v0.8.x-dev 2025-01-28 15:13 UTC

This package is auto-updated.

Last update: 2025-03-28 21:32:47 UTC


README

Lexer

Parse code and other text into structured trees.

The Lexer loops over the characters in a string, and processes them through Grammars to generate Asymmetrical Syntax Trees (AST) - Basically just a multi-dimensional array that describes the code.

Documentation

  • Installation & Getting Started are below
  • Create a Parser - Create a language parser that builds an AST, or modify an existing parser.