mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-15 00:45:04 +01:00
name resolution
This commit is contained in:
parent
cc2a9aeca8
commit
35f1c92e36
6 changed files with 449 additions and 60 deletions
|
|
@ -76,6 +76,6 @@ export function lines(input: string): Span[] {
|
|||
return lines;
|
||||
}
|
||||
|
||||
export function todo(msg: string, span: Span): never {
|
||||
throw new CompilerError(`TODO: ${msg}`, span);
|
||||
export function todo(msg: string): never {
|
||||
throw new CompilerError(`TODO: ${msg}`, { start: 0, end: 0 });
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue