hevia-parser icon indicating copy to clipboard operation
hevia-parser copied to clipboard

A recursive descent Swift parser written in ES6

Hevia

A Swift Parser, written in ES6.

Installation

npm install hevia

Or clone the source:

git clone https://github.com/maierfelix/hevia.git

Getting started

tokenize

Use tokenize(str) to tokenize a string


let tokens = hevia.tokenize("var a:Int = 10"); // returns array of tokens

parse

Use parse(tokens) to parse an array of tokens


let ast = hevia.parse(tokens); // returns ast