-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathkin.ts
74 lines (63 loc) · 2.08 KB
/
kin.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env node
import { program } from 'commander';
import pkg from '../package.json';
import { readFile } from 'fs/promises';
import { Interpreter, Parser, createGlobalEnv } from '../src/index';
import * as readline from 'readline/promises';
import { LogError } from '../src/lib/log';
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
program
.name('kin')
.description(
'Kin Programming Language: write computer programs in Kinyarwanda. @cli',
)
.usage('command [arguments]')
.version(
`\x1b[1mv${pkg.version}\x1b[0m`,
'-v, --version',
"Output kin's current version.",
)
.helpOption('-h, --help', 'Output usage of Kin.');
program
.command('repl')
.description("Enter Kin's Repl")
.action(async () => {
const parser = new Parser();
const env = createGlobalEnv(process.cwd());
console.log(`Repl ${pkg.version} (Kin)`);
while (true) {
const input = await rl.question('> ');
// check for no user input or exit keyword.
if (!input || input.includes('.exit')) {
process.exit(1);
}
const program = parser.produceAST(input);
Interpreter.evaluate(program, env);
}
});
program
.command('run <file_location>')
.description('Runs a given file.')
.action(async (file_location) => {
try {
const source_codes = await readFile(file_location, 'utf-8');
const parser = new Parser();
const ast = parser.produceAST(source_codes); // Produce AST for Kin
const env = createGlobalEnv(file_location); // create global environment for Kin
Interpreter.evaluate(ast, env); // Evaluate the program
process.exit(0);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any) {
if (error.code === 'ENOENT') {
LogError(`Kin Error: Can't resolve file at '${file_location}'`);
} else {
(error as Error).message
? LogError(`Kin Error: Unhandled : ${(error as Error).message}`)
: LogError(`Kin Error: Unhandled : ${error as Error}`);
}
}
});
program.parse();