microvium
Version:
A compact, embeddable scripting engine for microcontrollers for executing small scripts written in a subset of JavaScript.
102 lines (101 loc) • 2.52 kB
TypeScript
export declare const testFilenames: {
'src-to-il': {
il: {
output: string;
expected: string;
};
};
'virtual-machine': {
"hello-world": {
bytecode: {
output: string;
expected: string;
};
snapshot: {
output: string;
expected: string;
};
html: {
output: string;
expected: string;
};
};
addition: {
bytecode: {
output: string;
expected: string;
};
snapshot: {
output: string;
expected: string;
};
html: {
output: string;
expected: string;
};
};
"simple-branching": {
bytecode: {
output: string;
expected: string;
};
snapshot: {
output: string;
expected: string;
};
html: {
output: string;
expected: string;
};
};
};
'binary-region': {
empty: {
binary: {
output: string;
expected: string;
};
html: {
output: string;
expected: string;
};
};
basic: {
binary: {
output: string;
expected: string;
};
html: {
output: string;
expected: string;
};
};
placeholders: {
binary: {
output: string;
expected: string;
};
html: {
output: string;
expected: string;
};
};
};
'decode-snapshot': {
"decode-snapshot": {
snapshotToSave: {
output: string;
expected: string;
};
snapshotLoaded: {
output: string;
expected: string;
};
disassembly: {
output: string;
expected: string;
};
};
};
'scope-analysis': import("./common").TestFilenames;
};