parser stuff
This commit is contained in:
parent
b96dc867ab
commit
35f2574957
30
example-no-types.slg
Normal file
30
example-no-types.slg
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
|
||||||
|
|
||||||
|
fn add(a, b) {
|
||||||
|
+ a b
|
||||||
|
}
|
||||||
|
//
|
||||||
|
// add(2,3); // -> 5
|
||||||
|
//
|
||||||
|
// let a = "Hello";
|
||||||
|
//
|
||||||
|
// let b = "world";
|
||||||
|
//
|
||||||
|
// println(a + " " + b + "!"); // -> "Hello world!"
|
||||||
|
//
|
||||||
|
// if a == b {
|
||||||
|
// println("whaaaat");
|
||||||
|
// }
|
||||||
|
// else {
|
||||||
|
// println(":o");
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// loop {
|
||||||
|
// let i = 0;
|
||||||
|
//
|
||||||
|
// if i >= 10 {
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// i = i + 1;
|
||||||
|
// }
|
@ -109,7 +109,7 @@ export class Lexer {
|
|||||||
if (this.test("/")) {
|
if (this.test("/")) {
|
||||||
while (!this.done() && !this.test("\n"))
|
while (!this.done() && !this.test("\n"))
|
||||||
this.step();
|
this.step();
|
||||||
return this.token("//", pos)
|
return this.next()
|
||||||
}
|
}
|
||||||
return this.token("/", pos)
|
return this.token("/", pos)
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@ import { Expr, ExprKind, Param, Stmt, StmtKind, BinaryType} from "./ast.ts";
|
|||||||
import { Lexer } from "./Lexer.ts";
|
import { Lexer } from "./Lexer.ts";
|
||||||
import { Pos, Token } from "./Token.ts";
|
import { Pos, Token } from "./Token.ts";
|
||||||
|
|
||||||
class Parser {
|
export class Parser {
|
||||||
private currentToken: Token | null;
|
private currentToken: Token | null;
|
||||||
private nextNodeId = 0;
|
private nextNodeId = 0;
|
||||||
|
|
||||||
@ -11,7 +11,7 @@ class Parser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private step() { this.currentToken = this.lexer.next() }
|
private step() { this.currentToken = this.lexer.next() }
|
||||||
private done(): boolean { return this.currentToken == null; }
|
public done(): boolean { return this.currentToken == null; }
|
||||||
private current(): Token { return this.currentToken!; }
|
private current(): Token { return this.currentToken!; }
|
||||||
private pos(): Pos {
|
private pos(): Pos {
|
||||||
if (this.done())
|
if (this.done())
|
||||||
|
12
src/main.ts
12
src/main.ts
@ -1,13 +1,13 @@
|
|||||||
import { Lexer } from "./Lexer.ts";
|
import { Lexer } from "./Lexer.ts";
|
||||||
import { readFileSync } from 'node:fs';
|
import { readFileSync } from 'node:fs';
|
||||||
|
import { Parser } from "./Parser.ts";
|
||||||
|
|
||||||
|
|
||||||
const text = readFileSync("example.slg").toString()
|
const text = readFileSync("example-no-types.slg").toString()
|
||||||
|
|
||||||
const lexer = new Lexer(text);
|
const lexer = new Lexer(text);
|
||||||
let token = lexer.next();
|
const parser = new Parser(lexer)
|
||||||
while (token !== null) {
|
while (!parser.done()) {
|
||||||
const value = token.identValue ?? token.intValue ?? token.stringValue ?? "";
|
const result = parser.parseExpr()
|
||||||
console.log(`${token.type}\t${value}`)
|
console.log(result)
|
||||||
token = lexer.next();
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user