Add exception description on PDT parsing error.

This commit is contained in:
2023-01-24 23:10:52 +08:00
parent 02794d88b9
commit 2304257201
6 changed files with 68 additions and 28 deletions

View File

@@ -91,7 +91,7 @@ namespace Cryville.Common.Pdt {
}
}
}
public partial class PdtInterpreter<T> {
public partial class PdtInterpreter {
readonly static Dictionary<char, int> OP_PRIORITY = new Dictionary<char, int> {
{ '@', 7 },
{ '*', 6 }, { '/', 6 }, { '%', 6 },