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