aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis/SyntaxChecker.h
diff options
context:
space:
mode:
authorKwang Yul Seo <kseo@kodebox.io>2017-11-15 23:28:41 +0800
committerKwang Yul Seo <kseo@kodebox.io>2017-11-15 23:28:41 +0800
commit33664c04a8701ebb283f9a5826c2caacb6565fb0 (patch)
tree976199cbd77c4ef7d64f16bb4ea4d29ab151f349 /libsolidity/analysis/SyntaxChecker.h
parentbc39e730b6acaff7bb2bdb3ad99547ab6cdc1841 (diff)
downloaddexon-solidity-33664c04a8701ebb283f9a5826c2caacb6565fb0.tar
dexon-solidity-33664c04a8701ebb283f9a5826c2caacb6565fb0.tar.gz
dexon-solidity-33664c04a8701ebb283f9a5826c2caacb6565fb0.tar.bz2
dexon-solidity-33664c04a8701ebb283f9a5826c2caacb6565fb0.tar.lz
dexon-solidity-33664c04a8701ebb283f9a5826c2caacb6565fb0.tar.xz
dexon-solidity-33664c04a8701ebb283f9a5826c2caacb6565fb0.tar.zst
dexon-solidity-33664c04a8701ebb283f9a5826c2caacb6565fb0.zip
Update outdated comments
_errors -> _errorReporter.
Diffstat (limited to 'libsolidity/analysis/SyntaxChecker.h')
-rw-r--r--libsolidity/analysis/SyntaxChecker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/analysis/SyntaxChecker.h b/libsolidity/analysis/SyntaxChecker.h
index 7fffbec0..d5d72f14 100644
--- a/libsolidity/analysis/SyntaxChecker.h
+++ b/libsolidity/analysis/SyntaxChecker.h
@@ -38,7 +38,7 @@ namespace solidity
class SyntaxChecker: private ASTConstVisitor
{
public:
- /// @param _errors the reference to the list of errors and warnings to add them found during type checking.
+ /// @param _errorReporter provides the error logging functionality.
SyntaxChecker(ErrorReporter& _errorReporter): m_errorReporter(_errorReporter) {}
bool checkSyntax(ASTNode const& _astRoot);