Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

afmika/parser-combinator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

parser-combinator

Pure parser combinator from scratch using javascript.

  • The base concept is to construct a complex parser by combining elementary parts
  • Rules :
    • Not allowed to change/mutate datas but we can determine an output given an input
    • No procedural code
    • No exception handling, just functions, if and else, constructors and recursion