コード例 #1
0
 def __str__(self) -> str:
     return ae.parenthesize_expr(self.name.lexeme, self.value)
コード例 #2
0
 def __str__(self) -> str:
     return ae.parenthesize_expr(self.operator.lexeme, self.right)
コード例 #3
0
 def __str__(self) -> str:
     return ae.parenthesize_expr(str(self.assignee), self.value)
コード例 #4
0
 def __str__(self) -> str:
     return ae.parenthesize_expr("group", self.expression)
コード例 #5
0
 def __str__(self) -> str:
     return ae.parenthesize_expr(str(self.callee), *self.arguments)