diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2017-02-14 22:35:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-14 22:35:22 +0800 |
commit | 4189ff5b68f119878807104ebac0137171c8ecd6 (patch) | |
tree | fdedef979359908033a5a26aa3abf998d274c95b /libsolidity/analysis/SyntaxChecker.h | |
parent | 6f1f0b392ac5d3d244e65228cc8d9eebbdfe02ff (diff) | |
parent | a791ec75e2e73130afee391958651453acc8d781 (diff) | |
download | dexon-solidity-4189ff5b68f119878807104ebac0137171c8ecd6.tar dexon-solidity-4189ff5b68f119878807104ebac0137171c8ecd6.tar.gz dexon-solidity-4189ff5b68f119878807104ebac0137171c8ecd6.tar.bz2 dexon-solidity-4189ff5b68f119878807104ebac0137171c8ecd6.tar.lz dexon-solidity-4189ff5b68f119878807104ebac0137171c8ecd6.tar.xz dexon-solidity-4189ff5b68f119878807104ebac0137171c8ecd6.tar.zst dexon-solidity-4189ff5b68f119878807104ebac0137171c8ecd6.zip |
Merge pull request #1620 from ethereum/refactorEntry
Refactor NameAndTypeResolver and SyntaxChecker to allow other entry points.
Diffstat (limited to 'libsolidity/analysis/SyntaxChecker.h')
-rw-r--r-- | libsolidity/analysis/SyntaxChecker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/analysis/SyntaxChecker.h b/libsolidity/analysis/SyntaxChecker.h index c24bae09..308e128b 100644 --- a/libsolidity/analysis/SyntaxChecker.h +++ b/libsolidity/analysis/SyntaxChecker.h @@ -39,7 +39,7 @@ public: /// @param _errors the reference to the list of errors and warnings to add them found during type checking. SyntaxChecker(ErrorList& _errors): m_errors(_errors) {} - bool checkSyntax(SourceUnit const& _sourceUnit); + bool checkSyntax(ASTNode const& _astRoot); private: /// Adds a new error to the list of errors. |