0.5.1-beta.1 • Published 11 months ago

@aethergames/mkscribe v0.5.1-beta.1

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

MkScribe, a portable TypeScript version of Scribe's AST generator. Efficient, fast and kind of lightweight, made thinking on those who may want to create a Virtual Machine to interpret it.

Basic usage

MkScribe is as simple as it seems, take for example the next code.

import { MkScribe } from "aethergames/mkscribe";

/**
 * Will return the next value:
 *
 * [
 *  {
 *      name: {...},
 *      identifier: {...},
 *      value: ...,
 *      type: StoreStatement,
 *  },
 *  ...
 * ]
 */
MkScribe.build(`
store id IDENTIFIER "Hello!"

echo id
`);

From there, you decide how to interpret it.

0.5.1-beta.1

11 months ago

0.5.0-beta.1

11 months ago

0.4.0-beta.1

11 months ago

0.3.3-beta.1

1 year ago

0.3.2-beta.1

1 year ago

0.3.1

1 year ago

0.3.0

1 year ago

0.2.0

1 year ago

0.1.0

1 year ago

1.0.0

1 year ago