Add comment to getVariableReal

This commit is contained in:
Tom Hvitved
2021-05-17 15:02:40 +02:00
parent b434d42d05
commit 25f226e9dc

View File

@@ -508,6 +508,11 @@ class TVariableAccessReal =
TClassVariableAccess;
abstract class VariableAccessReal extends VariableAccess, TVariableAccessReal {
/**
* Same as `getVariable()`, but restricted to non-synthesized variable accesses.
*
* The sole purpose of this predicate is to make AST synthesis monotonic.
*/
abstract VariableReal getVariableReal();
}