aboutsummaryrefslogtreecommitdiffstats
path: root/test/libevmasm/Assembler.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-12-01 06:45:31 +0800
committerGitHub <noreply@github.com>2018-12-01 06:45:31 +0800
commitaaeb74f59283486ee95d71f896cf2dd6cbe503f7 (patch)
tree062fbcc8d84ce2bfa5bb0bb2ef200ba402bb3e8b /test/libevmasm/Assembler.cpp
parentcc00d8172b6cd7f9fc032e4a21857455ace2f290 (diff)
parent757623e381aba24b81a2365cf19037d3d96bf945 (diff)
downloaddexon-solidity-aaeb74f59283486ee95d71f896cf2dd6cbe503f7.tar
dexon-solidity-aaeb74f59283486ee95d71f896cf2dd6cbe503f7.tar.gz
dexon-solidity-aaeb74f59283486ee95d71f896cf2dd6cbe503f7.tar.bz2
dexon-solidity-aaeb74f59283486ee95d71f896cf2dd6cbe503f7.tar.lz
dexon-solidity-aaeb74f59283486ee95d71f896cf2dd6cbe503f7.tar.xz
dexon-solidity-aaeb74f59283486ee95d71f896cf2dd6cbe503f7.tar.zst
dexon-solidity-aaeb74f59283486ee95d71f896cf2dd6cbe503f7.zip
Merge pull request #5537 from ethereum/cp-SourceLocation-related-refactoring
[1/3] SourceLocation related refactoring.
Diffstat (limited to 'test/libevmasm/Assembler.cpp')
-rw-r--r--test/libevmasm/Assembler.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/libevmasm/Assembler.cpp b/test/libevmasm/Assembler.cpp
index 5ad01594..bece2be4 100644
--- a/test/libevmasm/Assembler.cpp
+++ b/test/libevmasm/Assembler.cpp
@@ -55,10 +55,12 @@ BOOST_AUTO_TEST_SUITE(Assembler)
BOOST_AUTO_TEST_CASE(all_assembly_items)
{
Assembly _assembly;
- _assembly.setSourceLocation(SourceLocation(1, 3, make_shared<string>("root.asm")));
+ auto root_asm = make_shared<CharStream>("", "root.asm");
+ _assembly.setSourceLocation(SourceLocation(1, 3, root_asm));
Assembly _subAsm;
- _subAsm.setSourceLocation(SourceLocation(6, 8, make_shared<string>("sub.asm")));
+ auto sub_asm = make_shared<CharStream>("", "sub.asm");
+ _subAsm.setSourceLocation(SourceLocation(6, 8, sub_asm));
_subAsm.append(Instruction::INVALID);
shared_ptr<Assembly> _subAsmPtr = make_shared<Assembly>(_subAsm);