definition:
|
parseQIdent :: SMTParser SMT.QIdent
parseQIdent = Parser $ \tokens -> case tokens of
[] -> (runParser eof) tokens
Id s : ts -> Right (ts, SMT.Id s)
LParen : ts -> (runParser (terminal KW_as *> return SMT.As <*> parseSym
<*> parseSort <* terminal RParen)) ts
t : ts -> (runParser (unexpected t)) ts
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- parser for qualified identifiers
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
parseQIdent
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ParserComb.Parser Language.SMTLIB.Scanner.Token Language.SMTLIB.Types.QIdent
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|