give up
This commit is contained in:
parent
26a83080aa
commit
1f9cbea832
@ -53,7 +53,7 @@ export class Ctx {
|
|||||||
return keyId(0);
|
return keyId(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public iterFiles(): Iterator<File> {
|
public iterFiles(): IteratorObject<File> {
|
||||||
return this.files.keys()
|
return this.files.keys()
|
||||||
.map((key) => keyId(key));
|
.map((key) => keyId(key));
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ import { Parser } from "./parse/parser.ts";
|
|||||||
import * as ast from "./ast/mod.ts";
|
import * as ast from "./ast/mod.ts";
|
||||||
import { Ctx } from "./ctx.ts";
|
import { Ctx } from "./ctx.ts";
|
||||||
import { File } from "./ctx.ts";
|
import { File } from "./ctx.ts";
|
||||||
|
import { Resolver } from "./resolve/resolver.ts";
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
const filePath = Deno.args[0];
|
const filePath = Deno.args[0];
|
||||||
@ -39,7 +40,10 @@ export class PackCompiler {
|
|||||||
await FileTreeAstCollector
|
await FileTreeAstCollector
|
||||||
.fromEntryFile(this.ctx, this.astCx, this.entryFilePath)
|
.fromEntryFile(this.ctx, this.astCx, this.entryFilePath)
|
||||||
.collect();
|
.collect();
|
||||||
this.ctx.printAsts();
|
// this.ctx.printAsts();
|
||||||
|
const entryFile = this.ctx.entryFile();
|
||||||
|
const entryFileAst = this.ctx.fileInfo(entryFile).ast!;
|
||||||
|
new Resolver(this.ctx, entryFileAst).resolve();
|
||||||
}
|
}
|
||||||
|
|
||||||
public enableDebug() {
|
public enableDebug() {
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
|
|
||||||
fn main() -> int {
|
fn add(lhs: int, rhs: int) -> int {
|
||||||
let a = 5;
|
lhs + rhs
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let a = 5;
|
||||||
|
let b = 7;
|
||||||
|
let c = add(a, b);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,6 +31,9 @@ export class Ribs {
|
|||||||
return this.valRibs.at(-1)!.bindings.has(idKey(ident));
|
return this.valRibs.at(-1)!.bindings.has(idKey(ident));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public val(ident: IdentId) {
|
||||||
|
}
|
||||||
|
|
||||||
public defVal(ident: IdentId, res: Res) {
|
public defVal(ident: IdentId, res: Res) {
|
||||||
this.valRibs.at(-1)!.bindings.set(idKey(ident), res);
|
this.valRibs.at(-1)!.bindings.set(idKey(ident), res);
|
||||||
}
|
}
|
||||||
|
@ -10,13 +10,16 @@ export class Resolver implements ast.Visitor {
|
|||||||
public constructor(
|
public constructor(
|
||||||
private ctx: Ctx,
|
private ctx: Ctx,
|
||||||
private entryFileAst: ast.File,
|
private entryFileAst: ast.File,
|
||||||
) {
|
) {}
|
||||||
|
|
||||||
|
public resolve() {
|
||||||
ast.visitFile(this, this.entryFileAst);
|
ast.visitFile(this, this.entryFileAst);
|
||||||
}
|
}
|
||||||
|
|
||||||
visitFile(file: ast.File): ast.VisitRes {
|
visitFile(file: ast.File): ast.VisitRes {
|
||||||
this.currentFile = this.entryFileAst.file;
|
this.currentFile = this.entryFileAst.file;
|
||||||
ast.visitStmts(this, file.stmts);
|
ast.visitStmts(this, file.stmts);
|
||||||
|
this.resolveFnBlocks();
|
||||||
}
|
}
|
||||||
|
|
||||||
visitLetStmt(stmt: ast.Stmt, kind: ast.LetStmt): ast.VisitRes {
|
visitLetStmt(stmt: ast.Stmt, kind: ast.LetStmt): ast.VisitRes {
|
||||||
@ -62,7 +65,28 @@ export class Resolver implements ast.Visitor {
|
|||||||
todo();
|
todo();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fnBlocksToResolve: [ast.Item, ast.FnItem][] = [];
|
||||||
|
|
||||||
visitFnItem(item: ast.Item, kind: ast.FnItem): ast.VisitRes {
|
visitFnItem(item: ast.Item, kind: ast.FnItem): ast.VisitRes {
|
||||||
|
this.defineVal(item.ident, this.defFn(item.ident.id, item, kind));
|
||||||
|
this.fnBlocksToResolve.push([item, kind]);
|
||||||
|
return "stop";
|
||||||
|
}
|
||||||
|
|
||||||
|
private resolveFnBlocks() {
|
||||||
|
for (const [item, kind] of this.fnBlocksToResolve) {
|
||||||
|
const ribPoint = this.ribs.checkpoint();
|
||||||
|
this.ribs.pushRib({ tag: "fn" });
|
||||||
|
for (const param of kind.params) {
|
||||||
|
ast.visitParam(this, param);
|
||||||
|
}
|
||||||
|
ast.visitBlock(this, kind.body!);
|
||||||
|
this.ribs.returnToCheckpoint(ribPoint);
|
||||||
|
}
|
||||||
|
this.fnBlocksToResolve = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
visitPathExpr(expr: ast.Expr, kind: ast.PathExpr): ast.VisitRes {
|
||||||
todo();
|
todo();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -80,6 +104,14 @@ export class Resolver implements ast.Visitor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
visitPathPat(pat: ast.Pat, kind: ast.PathPat): ast.VisitRes {
|
visitPathPat(pat: ast.Pat, kind: ast.PathPat): ast.VisitRes {
|
||||||
|
todo();
|
||||||
|
return "stop";
|
||||||
|
}
|
||||||
|
|
||||||
|
visitBlock(block: ast.Block): ast.VisitRes {
|
||||||
|
ast.visitStmts(this, block.stmts);
|
||||||
|
block.expr && ast.visitExpr(this, block.expr);
|
||||||
|
this.resolveFnBlocks();
|
||||||
return "stop";
|
return "stop";
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,6 +127,16 @@ export class Resolver implements ast.Visitor {
|
|||||||
return { tag: "def", def: { id, type: "mod" } };
|
return { tag: "def", def: { id, type: "mod" } };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fnDefs = new Map<number, [ast.Item, ast.FnItem]>();
|
||||||
|
private fnDef(id: number): [ast.Item, ast.FnItem] {
|
||||||
|
return this.fnDefs.get(id)!;
|
||||||
|
}
|
||||||
|
private defFn(_ident: IdentId, item: ast.Item, kind: ast.FnItem): Res {
|
||||||
|
const id = this.defIdCounter++;
|
||||||
|
this.fnDefs.set(id, [item, kind]);
|
||||||
|
return { tag: "def", def: { id, type: "fn" } };
|
||||||
|
}
|
||||||
|
|
||||||
private defineTy(ident: ast.Ident, res: Res) {
|
private defineTy(ident: ast.Ident, res: Res) {
|
||||||
if (this.ribs.hasTy(ident.id)) {
|
if (this.ribs.hasTy(ident.id)) {
|
||||||
const text = this.ctx.identText(ident.id);
|
const text = this.ctx.identText(ident.id);
|
||||||
@ -104,12 +146,14 @@ export class Resolver implements ast.Visitor {
|
|||||||
span: ident.span,
|
span: ident.span,
|
||||||
msg: `redefinition of type '${text}'`,
|
msg: `redefinition of type '${text}'`,
|
||||||
});
|
});
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
this.ribs.defTy(ident.id, res);
|
this.ribs.defTy(ident.id, res);
|
||||||
}
|
}
|
||||||
|
|
||||||
private defineVal(ident: ast.Ident, res: Res) {
|
private defineVal(ident: ast.Ident, res: Res) {
|
||||||
if (this.ribs.hasVal(ident.id)) {
|
if (this.ribs.hasVal(ident.id)) {
|
||||||
|
console.log(this.ribs);
|
||||||
const text = this.ctx.identText(ident.id);
|
const text = this.ctx.identText(ident.id);
|
||||||
this.ctx.report({
|
this.ctx.report({
|
||||||
severity: "error",
|
severity: "error",
|
||||||
@ -117,6 +161,7 @@ export class Resolver implements ast.Visitor {
|
|||||||
span: ident.span,
|
span: ident.span,
|
||||||
msg: `redefinition of value '${text}'`,
|
msg: `redefinition of value '${text}'`,
|
||||||
});
|
});
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
this.ribs.defVal(ident.id, res);
|
this.ribs.defVal(ident.id, res);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user