Shared: QLDoc for ContentApprox and getContentApprox.

This commit is contained in:
Geoffrey White 2024-03-01 17:36:53 +00:00
Родитель c663809cc7
Коммит cb1c68260e
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -178,13 +178,18 @@ signature module InputSig {
}
/**
* A content approximation.
* A content approximation. A content approximation corresponds with one or
* more `Content`s, and is used to provide an in-between level of precision
* for pruning.
*/
class ContentApprox {
/** Gets a textual representation of this element. */
string toString();
}
/**
* Gets the content approximation for content `c`.
*/
ContentApprox getContentApprox(Content c);
class ParameterPosition {