We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8326bc8 commit 5b0977cCopy full SHA for 5b0977c
solidity_parser/parser.py
@@ -614,7 +614,8 @@ def visitExpression(self, ctx):
614
TrueExpression=self.visit(ctx.getChild(2)),
615
FalseExpression=self.visit(ctx.getChild(4)))
616
617
- raise Exception("unrecognized expression")
+ return self.visit(list(ctx.getChildren()))
618
+
619
620
def visitStateVariableDeclaration(self, ctx):
621
type = self.visit(ctx.typeName())
0 commit comments