Renamed file.

This commit is contained in:
Christian 2014-10-30 12:42:04 +01:00
parent d3f5c6a0c8
commit a5f3602738
5 changed files with 4 additions and 3 deletions

View File

@ -21,7 +21,7 @@
*/
#include <libsolidity/ASTVisitor.h>
#include <libsolidity/CompilerUtilities.h>
#include <libsolidity/CompilerContext.h>
namespace dev {
namespace solidity {

View File

@ -25,6 +25,7 @@
#include <numeric>
#include <libsolidity/AST.h>
#include <libsolidity/ExpressionCompiler.h>
#include <libsolidity/CompilerContext.h>
using namespace std;

View File

@ -21,11 +21,12 @@
*/
#include <libsolidity/ASTVisitor.h>
#include <libsolidity/CompilerUtilities.h>
namespace dev {
namespace solidity {
class CompilerContext; // forward
/// Compiler for expressions, i.e. converts an AST tree whose root is an Expression into a stream
/// of EVM instructions. It needs a compiler context that is the same for the whole compilation
/// unit.
@ -68,7 +69,6 @@ private:
void moveToLValue(Expression const& _expression);
/// Returns the position of @a m_currentLValue in the stack, where 0 is the top of the stack.
unsigned stackPositionOfLValue() const;
void adjustStackOffset(eth::Instruction _instruction);
Declaration* m_currentLValue;
CompilerContext& m_context;