ProgramDiagnostic import { ProgramDiagnostic } from "destack:compute"; Diagnostic emitted while compiling a compute program. export struct ProgramDiagnostic { severity: ProgramDiagnosticSeverity; message: string; location: ProgramLocation; } language/library/src/compute/program.ds:99:108 Members severity: ProgramDiagnosticSeverity Diagnostic severity. message: string Human-readable diagnostic message. location: ProgramLocation Source location when available.