Minor tidy

This commit is contained in:
Calum Grant
2023-02-22 17:01:07 +00:00
parent 9980756ee8
commit f3e5a8f90f

View File

@@ -1,14 +1,16 @@
/**
* Parses RA expressions.
*/
signature class RAstring extends string;
/**
* A predicate that contains RA.
*/
signature class RApredicate {
string getLineOfRA(int n);
}
/**
* Parses strings of RA provided by an RA predicate,
* Parses strings of RA provided by an RA predicate, and represented the
*/
module RAParser<RApredicate Predicate> {
private string parseRaExpr(Predicate p, int line, int arity, int lhs) {