indexing description:"Abstract description to access to `Result'. % %Version for Bench." date: "$Date$" revision: "$Revision$" class RESULT_AS inherit ACCESS_AS redefine is_equivalent end LEAF_AS create make_with_location feature -- Visitor process (v: AST_VISITOR) is -- process current element. do v.process_result_as (Current) end feature -- Properties access_name: STRING is "Result" parameters: EIFFEL_LIST [EXPR_AS] is -- No parameters for Result do end feature -- Comparison is_equivalent (other: like Current): BOOLEAN is -- Is `other' equivalent to the current object ? do Result := True end end -- class RESULT_AS