Files
quartz-org-roam/quartz/util/base/compiler/diagnostics.ts
2026-01-30 02:25:53 -05:00

10 lines
175 B
TypeScript

import { Span } from "./ast"
export type BaseExpressionDiagnostic = {
kind: "lex" | "parse" | "runtime"
message: string
span: Span
context: string
source: string
}