diff options
author | LianaHus <liana@ethdev.com> | 2015-09-08 20:30:21 +0800 |
---|---|---|
committer | LianaHus <liana@ethdev.com> | 2015-09-08 20:30:21 +0800 |
commit | df8c82bc60f4d9238635082f9a9f41a45b5e2b98 (patch) | |
tree | f52b1582b3f532e3b8fcdc91f85ede89e21e8510 /libsolidity/CompilerStack.h | |
parent | 02d4198242ec3dacc7af31c9446c83adcf014de9 (diff) | |
download | dexon-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 'libsolidity/CompilerStack.h')
-rw-r--r-- | libsolidity/CompilerStack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/CompilerStack.h b/libsolidity/CompilerStack.h index e5e1ece8..0d812e02 100644 --- a/libsolidity/CompilerStack.h +++ b/libsolidity/CompilerStack.h @@ -132,7 +132,7 @@ public: /// @returns the previously used scanner, useful for counting lines during error reporting. Scanner const& scanner(std::string const& _sourceName = "") const; /// @returns the parsed source unit with the supplied name. - SourceUnit const& AST(std::string const& _sourceName = "") const; + SourceUnit const& ast(std::string const& _sourceName = "") const; /// @returns the parsed contract with the supplied name. Throws an exception if the contract /// does not exist. ContractDefinition const& contractDefinition(std::string const& _contractName) const; |