start lowering

This commit is contained in:
nora 2023-07-26 19:36:02 +02:00
parent 87f081a4fe
commit ccd8008731
9 changed files with 275 additions and 71 deletions

View file

@ -8,6 +8,8 @@ export type Identifier = {
res?: Resolution;
};
export type ItemId = number;
export type ItemKind = {
kind: "function";
node: FunctionDef;
@ -15,7 +17,7 @@ export type ItemKind = {
export type Item = ItemKind & {
span: Span;
id: number;
id: ItemId;
};
export type FunctionDef = {