Skip to content

Commit

Permalink
Added SymMax and SymCount to opKindStrings. Resolves #51
Browse files Browse the repository at this point in the history
  • Loading branch information
balasub committed Feb 14, 2024
1 parent 19a6999 commit a1f8f5c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Src/Core/API/ASTQueries/ASTSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,7 @@ private void RegisterNames()
Register(OpKind.Neg, "-", OpStyleKind.Prefix);
Register(OpKind.Not, "not", OpStyleKind.Apply);
Register(OpKind.Or, "or", OpStyleKind.Apply);
Register (OpKind.OrAll, "orAll", OpStyleKind.Apply);
Register(OpKind.OrAll, "orAll", OpStyleKind.Apply);
Register(OpKind.Prod, "prod", OpStyleKind.Apply);
Register(OpKind.Qtnt, "qtnt", OpStyleKind.Apply);
Register(OpKind.Sub, "-", OpStyleKind.Infix);
Expand Down Expand Up @@ -1227,6 +1227,9 @@ private void RegisterNames()
Register(OpKind.ToString, "toString", OpStyleKind.Apply);
Register(OpKind.ToSymbol, "toSymbol", OpStyleKind.Apply);

Register(OpKind.SymMax, "symMax", OpStyleKind.Apply);
Register(OpKind.SymCount, "symCount", OpStyleKind.Apply);

Register(RelKind.Eq, "=");
Register(RelKind.Ge, ">=");
Register(RelKind.Gt, ">");
Expand Down

0 comments on commit a1f8f5c

Please sign in to comment.