aboutsummaryrefslogtreecommitdiffstats
path: root/Parser.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-01-31 04:43:19 +0800
committerChristian <c@ethdev.com>2015-01-31 04:49:01 +0800
commitab9dec320a034a0b9aacd5f8944b48de609d2fe8 (patch)
treee84f9abb22905c18f3d53744cae06c8810bfbfc1 /Parser.h
parent06e846b45cedea57c55c7e8da0b77b76bab3bc80 (diff)
downloaddexon-solidity-ab9dec320a034a0b9aacd5f8944b48de609d2fe8.tar.gz
dexon-solidity-ab9dec320a034a0b9aacd5f8944b48de609d2fe8.tar.zst
dexon-solidity-ab9dec320a034a0b9aacd5f8944b48de609d2fe8.zip
Fix: No parameters for event.
Diffstat (limited to 'Parser.h')
-rw-r--r--Parser.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Parser.h b/Parser.h
index 69478c81..413a2711 100644
--- a/Parser.h
+++ b/Parser.h
@@ -97,6 +97,9 @@ private:
ASTPointer<ASTString> getLiteralAndAdvance();
///@}
+ /// Creates an empty ParameterList at the current location (used if parameters can be omitted).
+ ASTPointer<ParameterList> createEmptyParameterList();
+
/// Creates a @ref ParserError exception and annotates it with the current position and the
/// given @a _description.
ParserError createParserError(std::string const& _description) const;