summaryrefslogtreecommitdiff
path: root/src/parser/smt/SmtLexer.g
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/smt/SmtLexer.g')
-rw-r--r--src/parser/smt/SmtLexer.g8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/parser/smt/SmtLexer.g b/src/parser/smt/SmtLexer.g
index 6af685016..3d9a84f06 100644
--- a/src/parser/smt/SmtLexer.g
+++ b/src/parser/smt/SmtLexer.g
@@ -1,15 +1,15 @@
options {
language = "Cpp"; // C++ output for antlr
- namespace = "CVC4::parser"; // Wrap everything in the smtparser namespace
namespaceStd = "std"; // Cosmetic option to get rid of long defines in generated code
namespaceAntlr = "antlr"; // Cosmetic option to get rid of long defines in generated code
+ namespace = "CVC4::parser"; // Wrap everything in the smtparser namespace
}
/**
- * SmtLexer class is a stream tokenizer (lexer) for the SMT-LIB benchmark
+ * AntlrSmtLexer class is a stream tokenizer (lexer) for the SMT-LIB benchmark
* language.
*/
-class SmtLexer extends Lexer;
+class AntlrSmtLexer extends Lexer;
options {
exportVocab = SmtVocabulary; // Name of the shared token vocabulary
@@ -144,7 +144,7 @@ NUMERAL options { paraphrase = "a numeral"; }
;
/**
- * Matches an double quoted string literal. No quote-escaping is supported inside.
+ * Matches a double quoted string literal. No quote-escaping is supported inside.
*/
STRING_LITERAL options { paraphrase = "a string literal"; }
: '\"' (~('\"'))* '\"'
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback