Adding TypeCheckingException to throws clause in SMT parsers
authorChristopher L. Conway <christopherleeconway@gmail.com>
Wed, 28 Jul 2010 23:04:44 +0000 (23:04 +0000)
committerChristopher L. Conway <christopherleeconway@gmail.com>
Wed, 28 Jul 2010 23:04:44 +0000 (23:04 +0000)
src/parser/smt/smt_input.cpp
src/parser/smt/smt_input.h
src/parser/smt2/smt2_input.cpp
src/parser/smt2/smt2_input.h

index 42843bac2b55109f225561327b3fb2ab87dd4b36..d062683d3352ee4e998c9f687751fa82d652780c 100644 (file)
@@ -60,12 +60,12 @@ SmtInput::~SmtInput() {
 }
 
 Command* SmtInput::parseCommand()
-  throw (ParserException, AssertionException) {
+  throw (ParserException, TypeCheckingException, AssertionException) {
   return d_pSmtParser->parseCommand(d_pSmtParser);
 }
 
 Expr SmtInput::parseExpr()
-  throw (ParserException, AssertionException) {
+  throw (ParserException, TypeCheckingException, AssertionException) {
   return d_pSmtParser->parseExpr(d_pSmtParser);
 }
 
index f3f4619152a35037ca13daff05ee6029060e4692..dda4d63487ab06cc3d6bddeb5dd29bfb57eb7f93 100644 (file)
@@ -72,7 +72,8 @@ protected:
    *
    * @throws ParserException if an error is encountered during parsing.
    */
-  Command* parseCommand() throw(ParserException, AssertionException);
+  Command* parseCommand() 
+    throw(ParserException, TypeCheckingException, AssertionException);
 
   /**
    * Parse an expression from the input. Returns a null
@@ -80,7 +81,8 @@ protected:
    *
    * @throws ParserException if an error is encountered during parsing.
    */
-  Expr parseExpr() throw(ParserException, AssertionException);
+  Expr parseExpr() 
+    throw(ParserException, TypeCheckingException, AssertionException);
 
 private:
 
index e0bcadd618f754249ab4cc6af13008208116da18..cbb9c57a3481fb9e1eb04e26d1bfaa1dd8a49444 100644 (file)
@@ -61,12 +61,12 @@ Smt2Input::~Smt2Input() {
 }
 
 Command* Smt2Input::parseCommand()
-  throw (ParserException, AssertionException) {
+  throw (ParserException, TypeCheckingException, AssertionException) {
   return d_pSmt2Parser->parseCommand(d_pSmt2Parser);
 }
 
 Expr Smt2Input::parseExpr()
-  throw (ParserException, AssertionException) {
+  throw (ParserException, TypeCheckingException, AssertionException) {
   return d_pSmt2Parser->parseExpr(d_pSmt2Parser);
 }
 
index 45986948a918797ef341250c0b7a21a5154cbdaf..320f5ab75202d78a4bbc8fd5e6be8301ea3b2751 100644 (file)
@@ -81,7 +81,8 @@ protected:
    *
    * @throws ParserException if an error is encountered during parsing.
    */
-  Command* parseCommand() throw(ParserException, AssertionException);
+  Command* parseCommand() 
+    throw(ParserException, TypeCheckingException, AssertionException);
 
   /**
    * Parse an expression from the input. Returns a null
@@ -89,7 +90,8 @@ protected:
    *
    * @throws ParserException if an error is encountered during parsing.
    */
-  Expr parseExpr() throw(ParserException, AssertionException);
+  Expr parseExpr() 
+    throw(ParserException, TypeCheckingException, AssertionException);
 
 };/* class Smt2Input */