summaryrefslogtreecommitdiff
path: root/src/parser/antlr_input.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-03-01 18:31:10 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2013-03-25 20:35:54 -0400
commitef189453232a4dff9d3cfebafc6101bf8416b549 (patch)
tree3940f9d503cfc69431a3ac85b717fd4871241553 /src/parser/antlr_input.h
parent30333c667c982a3ce4c4efcec705724d22f12ec2 (diff)
java input stream adapters working
Diffstat (limited to 'src/parser/antlr_input.h')
-rw-r--r--src/parser/antlr_input.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser/antlr_input.h b/src/parser/antlr_input.h
index 020db0d50..89f6c8db5 100644
--- a/src/parser/antlr_input.h
+++ b/src/parser/antlr_input.h
@@ -185,8 +185,9 @@ public:
std::string getUnparsedText();
/** Get the ANTLR3 lexer for this input. */
- pANTLR3_LEXER getAntlr3Lexer(){ return d_lexer; };
+ pANTLR3_LEXER getAntlr3Lexer() { return d_lexer; }
+ pANTLR3_INPUT_STREAM getAntlr3InputStream() { return d_antlr3InputStream; }
protected:
/** Create an input. This input takes ownership of the given input stream,
* and will delete it at destruction time.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback