-
Notifications
You must be signed in to change notification settings - Fork 6
Node API
Vihan edited this page Nov 18, 2018
·
1 revision
VSL offers a few ways to communicate with the programming language implementation.
VSL's interopability API is covered in the Node.js interopability section. It is available through:
import * as VSL from 'vsl/interop';
const vslString = new VSL.String("Hello, World!");
vslProcess.stdin.write(vslString.getBuffer());
To directly access VSL internal classes such as to manually compile VSL files using compilation API's use:
import * as VSL from 'vsl/api';
// VSL classes available:
const group = new VSL.CompilationGroup();
Parser nodes would be available through VSL.Nodes.NodeClassName
. Individual passes are not exported.
VSL's WASM API is covered in the WASM section however it is available through:
import { VSL } from 'vsl/wasm';
VSL('./compiledVSLFile.wasm')
.then(instance => /* ... */);
- Introduction
- Installation
- VSL By Example
- Usage
- WASM (WebAssembly)
- The Basics
- Your First Program
- Syntax
- Concepts
- Modules
- Advanced Details
- Interop
- VSL Development
- Common Errors