summaryrefslogtreecommitdiff
path: root/src/parser/smt
diff options
context:
space:
mode:
authorChristopher L. Conway <christopherleeconway@gmail.com>2010-02-16 19:35:34 +0000
committerChristopher L. Conway <christopherleeconway@gmail.com>2010-02-16 19:35:34 +0000
commit421446830d238e4a82fb0407621b2876b6e46a74 (patch)
tree29badf8de1a2603bbc9e4af6da45ee113f46bfa8 /src/parser/smt
parentbe1edc45cd31ea61ebb80641ae90c96c46a532ea (diff)
Moving parser error checking into AntlrParser
Diffstat (limited to 'src/parser/smt')
-rw-r--r--src/parser/smt/smt_parser.g28
1 files changed, 2 insertions, 26 deletions
diff --git a/src/parser/smt/smt_parser.g b/src/parser/smt/smt_parser.g
index fc38871b0..a9f06d92c 100644
--- a/src/parser/smt/smt_parser.g
+++ b/src/parser/smt/smt_parser.g
@@ -123,21 +123,8 @@ annotatedFormula returns [CVC4::Expr formula]
}
: /* a built-in operator application */
LPAREN kind = builtinOp annotatedFormulas[args] RPAREN
- { AlwaysAssert( args.size() >= minArity(kind)
- && args.size() <= maxArity(kind) );
+ { AlwaysAssert( checkArity(kind, args.size()) );
formula = mkExpr(kind,args); }
- exception catch [CVC4::AssertionException& ex] {
- stringstream ss;
- ss << "Expected ";
- if( args.size() < minArity(kind) ) {
- ss << "at least " << minArity(kind) << " ";
- } else {
- ss << "at most " << maxArity(kind) << " ";
- }
- ss << "arguments for operator '" << kind << "'. ";
- ss << "Found: " << args.size();
- parseError(ss.str());
- }
| /* A non-built-in function application */
@@ -226,12 +213,8 @@ functionSymbol returns [CVC4::Expr fun]
string name;
}
: name = functionName[CHECK_DECLARED]
- { AlwaysAssert( isFunction(name) );
+ { AlwaysAssert( checkFunction(name) );
fun = getFunction(name); }
- exception catch [CVC4::AssertionException& ex] {
- parseError("Expected function symbol, found: " + name);
- }
-
;
/**
@@ -334,12 +317,5 @@ returns [std::string id]
: x:IDENTIFIER
{ id = x->getText();
AlwaysAssert( checkDeclaration(id, check,type) ); }
- exception catch [CVC4::AssertionException& ex] {
- switch (check) {
- case CHECK_DECLARED: parseError("Symbol " + id + " not declared");
- case CHECK_UNDECLARED: parseError("Symbol " + id + " already declared");
- default: throw ex;
- }
- }
;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback