diff options
author | Christian Parpart <christian@ethereum.org> | 2018-11-28 23:15:45 +0800 |
---|---|---|
committer | Christian Parpart <christian@ethereum.org> | 2018-11-29 08:15:24 +0800 |
commit | 5ec67ee477f021b25355c546e4ba9b69b79040ce (patch) | |
tree | e292d866998c1eed7484666fcea0eea18c9bf5ad | |
parent | 463951e8cdd9d3d36b4d1b1e1dd41bb8f54bb73c (diff) | |
download | dexon-solidity-5ec67ee477f021b25355c546e4ba9b69b79040ce.tar.gz dexon-solidity-5ec67ee477f021b25355c546e4ba9b69b79040ce.tar.zst dexon-solidity-5ec67ee477f021b25355c546e4ba9b69b79040ce.zip |
liblangutil: adds ParserBase::charStream() accessor
-rw-r--r-- | liblangutil/ParserBase.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/liblangutil/ParserBase.h b/liblangutil/ParserBase.h index 3ecabed5..0007da63 100644 --- a/liblangutil/ParserBase.h +++ b/liblangutil/ParserBase.h @@ -23,6 +23,7 @@ #pragma once #include <liblangutil/Token.h> +#include <liblangutil/Scanner.h> #include <memory> #include <string> @@ -38,6 +39,7 @@ public: explicit ParserBase(ErrorReporter& errorReporter): m_errorReporter(errorReporter) {} std::shared_ptr<std::string const> const& sourceName() const; + CharStream const* charStream() const { return &m_scanner->charStream(); } protected: /// Utility class that creates an error and throws an exception if the |