Skip to content

Commit

Permalink
Fixed comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
AZHenley committed Apr 27, 2019
1 parent ce2d0ca commit 79cf307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emitter/emitter.go
Expand Up @@ -313,7 +313,7 @@ func expr(node *ast.Node) string {
} else if node.Type == ast.FUNCCALL {
return funcCall(node)
} else if node.Type == ast.DOTOP {
//return "((" + expr(&node.Children[0]) + ")->(" + expr(&node.Children[1]) + "))"
return "((" + expr(&node.Children[0]) + ")->(" + expr(&node.Children[1]) + "))"
} else if node.Type == ast.EXPRESSION {
return expr(&node.Children[0])
} else if node.Type == ast.NEW {
Expand Down

0 comments on commit 79cf307

Please sign in to comment.