indexing description: "AST representation of an Eiffel function pointer for Result types."; date: "$Date$"; revision: "$Revision$" class ADDRESS_RESULT_AS inherit EXPR_AS LEAF_AS create make_from_other feature -- Visitor process (v: AST_VISITOR) is -- process current element. do v.process_address_result_as (Current) end feature -- Comparison is_equivalent (other: like Current): BOOLEAN is -- Is `other' equivalent to the current object ? do Result := True end end -- class ADDRESS_RESULT_AS