diff options
author | chriseth <chris@ethereum.org> | 2016-10-25 18:50:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-25 18:50:24 +0800 |
commit | e00a4b47c06d412cd9342b8be2163e861c591c28 (patch) | |
tree | 3c8584a2d12591f6dd5766f0c3f074bf0a6ffd97 /libsolidity/codegen/ExpressionCompiler.h | |
parent | d190f016ad70f78f3abb06a09472235844e7c04d (diff) | |
parent | 59f6c18c2be86152261bb20732161c60fd2a6485 (diff) | |
download | dexon-solidity-e00a4b47c06d412cd9342b8be2163e861c591c28.tar dexon-solidity-e00a4b47c06d412cd9342b8be2163e861c591c28.tar.gz dexon-solidity-e00a4b47c06d412cd9342b8be2163e861c591c28.tar.bz2 dexon-solidity-e00a4b47c06d412cd9342b8be2163e861c591c28.tar.lz dexon-solidity-e00a4b47c06d412cd9342b8be2163e861c591c28.tar.xz dexon-solidity-e00a4b47c06d412cd9342b8be2163e861c591c28.tar.zst dexon-solidity-e00a4b47c06d412cd9342b8be2163e861c591c28.zip |
Merge pull request #1264 from ethereum/988
State variable under contract's name
Diffstat (limited to 'libsolidity/codegen/ExpressionCompiler.h')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.h b/libsolidity/codegen/ExpressionCompiler.h index 43a92a10..f4ce1fec 100644 --- a/libsolidity/codegen/ExpressionCompiler.h +++ b/libsolidity/codegen/ExpressionCompiler.h @@ -103,6 +103,8 @@ private: /// expected to be on the stack and is updated by this call. void appendExpressionCopyToMemory(Type const& _expectedType, Expression const& _expression); + /// Appends code for a variable that might be a constant or not + void appendVariable(VariableDeclaration const& _variable, Expression const& _expression); /// Sets the current LValue to a new one (of the appropriate type) from the given declaration. /// Also retrieves the value if it was not requested by @a _expression. void setLValueFromDeclaration(Declaration const& _declaration, Expression const& _expression); |