aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/GasMeter.cpp
diff options
context:
space:
mode:
authorLianaHus <liana@ethdev.com>2015-09-08 20:30:21 +0800
committerLianaHus <liana@ethdev.com>2015-09-08 20:30:21 +0800
commitdf8c82bc60f4d9238635082f9a9f41a45b5e2b98 (patch)
treef52b1582b3f532e3b8fcdc91f85ede89e21e8510 /test/libsolidity/GasMeter.cpp
parent02d4198242ec3dacc7af31c9446c83adcf014de9 (diff)
downloaddexon-solidity-df8c82bc60f4d9238635082f9a9f41a45b5e2b98.tar.gz
dexon-solidity-df8c82bc60f4d9238635082f9a9f41a45b5e2b98.tar.zst
dexon-solidity-df8c82bc60f4d9238635082f9a9f41a45b5e2b98.zip
- renamed AST to ast and ABI to abi
- style fixes
Diffstat (limited to 'test/libsolidity/GasMeter.cpp')
-rw-r--r--test/libsolidity/GasMeter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/GasMeter.cpp b/test/libsolidity/GasMeter.cpp
index bcf9bbc1..897d12fd 100644
--- a/test/libsolidity/GasMeter.cpp
+++ b/test/libsolidity/GasMeter.cpp
@@ -49,7 +49,7 @@ public:
ETH_TEST_REQUIRE_NO_THROW(m_compiler.compile(), "Compiling contract failed");
AssemblyItems const* items = m_compiler.runtimeAssemblyItems("");
- ASTNode const& sourceUnit = m_compiler.AST();
+ ASTNode const& sourceUnit = m_compiler.ast();
BOOST_REQUIRE(items != nullptr);
m_gasCosts = GasEstimator::breakToStatementLevel(
GasEstimator::structuralEstimation(*items, vector<ASTNode const*>({&sourceUnit})),