mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Styling changes for SourceLocation and friends
This commit is contained in:
parent
fb328b778c
commit
54121a0d78
@ -41,6 +41,7 @@ public:
|
||||
bytes getAssembledBytecode() { return m_context.getAssembledBytecode(m_optimize); }
|
||||
bytes getRuntimeBytecode() { return m_runtimeContext.getAssembledBytecode(m_optimize);}
|
||||
void streamAssembly(std::ostream& _stream) const { m_context.streamAssembly(_stream); }
|
||||
/// Getters for compiler contexts. Only for testing purposes.
|
||||
CompilerContext const& getContext() const { return m_context; }
|
||||
CompilerContext const& getRuntimeContext() const { return m_runtimeContext; }
|
||||
|
||||
|
@ -175,28 +175,28 @@ void CompilerContext::resetVisitedNodes(ASTNode const* _node)
|
||||
|
||||
CompilerContext& CompilerContext::operator<<(eth::AssemblyItem _item)
|
||||
{
|
||||
solAssert(m_visitedNodes.size() > 0, "No node on the visited stack");
|
||||
solAssert(!m_visitedNodes.empty(), "No node on the visited stack");
|
||||
m_asm.append(_item, m_visitedNodes.top()->getLocation());
|
||||
return *this;
|
||||
}
|
||||
|
||||
CompilerContext& CompilerContext::operator<<(eth::Instruction _instruction)
|
||||
{
|
||||
solAssert(m_visitedNodes.size() > 0, "No node on the visited stack");
|
||||
solAssert(!m_visitedNodes.empty(), "No node on the visited stack");
|
||||
m_asm.append(_instruction, m_visitedNodes.top()->getLocation());
|
||||
return *this;
|
||||
}
|
||||
|
||||
CompilerContext& CompilerContext::operator<<(u256 const& _value)
|
||||
{
|
||||
solAssert(m_visitedNodes.size() > 0, "No node on the visited stack");
|
||||
solAssert(!m_visitedNodes.empty(), "No node on the visited stack");
|
||||
m_asm.append(_value, m_visitedNodes.top()->getLocation());
|
||||
return *this;
|
||||
}
|
||||
|
||||
CompilerContext& CompilerContext::operator<<(bytes const& _data)
|
||||
{
|
||||
solAssert(m_visitedNodes.size() > 0, "No node on the visited stack");
|
||||
solAssert(!m_visitedNodes.empty(), "No node on the visited stack");
|
||||
m_asm.append(_data, m_visitedNodes.top()->getLocation());
|
||||
return *this;
|
||||
}
|
||||
|
@ -103,7 +103,7 @@ public:
|
||||
/// Resets the stack of visited nodes with a new stack having only @c _node
|
||||
void resetVisitedNodes(ASTNode const* _node);
|
||||
/// Pops the stack of visited nodes
|
||||
void popVisitedNodes() { m_visitedNodes.pop();}
|
||||
void popVisitedNodes() { m_visitedNodes.pop(); }
|
||||
/// Pushes an ASTNode to the stack of visited nodes
|
||||
void pushVisitedNodes(ASTNode const* _node) { m_visitedNodes.push(_node); }
|
||||
|
||||
|
@ -165,7 +165,7 @@ bool ExpressionCompiler::visit(UnaryOperation const& _unaryOperation)
|
||||
|
||||
bool ExpressionCompiler::visit(BinaryOperation const& _binaryOperation)
|
||||
{
|
||||
CompilerContext::LocationSetter locationSetter(m_context, &_binaryOperation);
|
||||
CompilerContext::LocationSetter locationSetter(m_context, &_binaryOperation);
|
||||
Expression const& leftExpression = _binaryOperation.getLeftExpression();
|
||||
Expression const& rightExpression = _binaryOperation.getRightExpression();
|
||||
Type const& commonType = _binaryOperation.getCommonType();
|
||||
|
Loading…
Reference in New Issue
Block a user