diff options
author | Christian Parpart <christian@ethereum.org> | 2018-11-28 23:13:36 +0800 |
---|---|---|
committer | Christian Parpart <christian@ethereum.org> | 2018-11-29 19:45:27 +0800 |
commit | 22eff22492b2d569fe56b59763ddc1cd1cf9ccf4 (patch) | |
tree | ea6dc0a75a3c1c7d189ec9bb899884cc4f3eefd6 /test/tools | |
parent | 6060a3682c077d7b329ec9171abdacbf1b383ec7 (diff) | |
download | dexon-solidity-22eff22492b2d569fe56b59763ddc1cd1cf9ccf4.tar.gz dexon-solidity-22eff22492b2d569fe56b59763ddc1cd1cf9ccf4.tar.zst dexon-solidity-22eff22492b2d569fe56b59763ddc1cd1cf9ccf4.zip |
liblangutil: extends CharStream to know about the respective (file-)name (and adapt codebase to it)
Diffstat (limited to 'test/tools')
-rw-r--r-- | test/tools/yulopti.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tools/yulopti.cpp b/test/tools/yulopti.cpp index 5a8a5106..8ecafb29 100644 --- a/test/tools/yulopti.cpp +++ b/test/tools/yulopti.cpp @@ -81,7 +81,7 @@ public: bool parse(string const& _input) { ErrorReporter errorReporter(m_errors); - shared_ptr<Scanner> scanner = make_shared<Scanner>(CharStream(_input), ""); + shared_ptr<Scanner> scanner = make_shared<Scanner>(CharStream(_input, ""), ""); m_ast = yul::Parser(errorReporter, yul::AsmFlavour::Strict).parse(scanner, false); if (!m_ast || !errorReporter.errors().empty()) { |