diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2007-12-04 13:50:00 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2007-12-04 13:50:00 -0500 |
commit | e9369426e1146a2373ac47c11647bdd70d41f7be (patch) | |
tree | 0a87329b516338c59d9359ff35b22b14a34d650f /parse.h | |
parent | ea0f055258ecc4a30398a1a885412285c43cf948 (diff) | |
parent | 0c218afb69ed53355a69e4264cbc5584908d65b4 (diff) | |
download | systemtap-steved-e9369426e1146a2373ac47c11647bdd70d41f7be.tar.gz systemtap-steved-e9369426e1146a2373ac47c11647bdd70d41f7be.tar.xz systemtap-steved-e9369426e1146a2373ac47c11647bdd70d41f7be.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'parse.h')
-rw-r--r-- | parse.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -69,7 +69,7 @@ struct systemtap_session; class lexer { public: - token* scan (bool expand_args=true); + token* scan (bool wildcard=false, bool expand_args=true); lexer (std::istream&, const std::string&, systemtap_session&); private: @@ -132,12 +132,12 @@ private: // preprocessing subordinate std::vector<const token*> enqueued_pp; - const token* scan_pp (bool expand_args=true); + const token* scan_pp (bool wildcard=false, bool expand_args=true); // scanning state const token* last (); - const token* next (); - const token* peek (); + const token* next (bool wildcard=false); + const token* peek (bool wildcard=false); const token* last_t; // the last value returned by peek() or next() const token* next_t; // lookahead token |