mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-15 00:45:04 +01:00
start lowering
This commit is contained in:
parent
87f081a4fe
commit
ccd8008731
9 changed files with 275 additions and 71 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue