def reduce_LBRACKET_Expr_RBRACKET(self, *kids): self.val = qlast.Index(index=kids[1].val)
def visit_IndexIndirection(self, node): result = qlast.Indirection( arg=self.visit(node.expr), indirection=[qlast.Index(index=self.visit(node.index))]) return result