hevia

Swift Parser

Usage no npm install needed!

<script type="module">
  import hevia from 'https://cdn.skypack.dev/hevia';
</script>

README

Hevia

Build Status npm version

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