def eval(self, ctx, stack): x = stack.pop() stack.append(commonnew(ctx, x, []))
def eval(self, ctx, stack): y = stack.pop() x = stack.pop() assert isinstance(y, W_List) args = y.get_args() stack.append(commonnew(ctx, x, args))