forked from github/quartz
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
import { Span } from "./ast"
|
|
|
|
export type BaseExpressionDiagnostic = {
|
|
kind: "lex" | "parse" | "runtime"
|
|
message: string
|
|
span: Span
|
|
context: string
|
|
source: string
|
|
}
|