AshleyYakeley / Truth

Changes and Pinafore projects. Pull requests not accepted.
https://pinafore.info/
GNU General Public License v2.0
32 stars 0 forks source link

SourceError type #296

Open AshleyYakeley opened 4 months ago

AshleyYakeley commented 4 months ago
datatype SourceError of
    Mk Text Integer Integer Text;
end

or

datatype SourceError of
    Mk of
        name: Text;
        row: Integer;
        column: Integer;
        error: Text;
    end;
end