/src/tools/compiler/asm/liberty_asm_proxy_visitor.e
http://github.com/tybor/Liberty · Specman e · 39 lines · 20 code · 5 blank · 14 comment · 0 complexity · 14033a964ed1e30e2341017cedcf47ce MD5 · raw file
- -- This file is part of Liberty Eiffel.
- --
- -- Liberty Eiffel is free software: you can redistribute it and/or modify
- -- it under the terms of the GNU General Public License as published by
- -- the Free Software Foundation, version 3 of the License.
- --
- -- Liberty Eiffel is distributed in the hope that it will be useful,
- -- but WITHOUT ANY WARRANTY; without even the implied warranty of
- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- -- GNU General Public License for more details.
- --
- -- You should have received a copy of the GNU General Public License
- -- along with Liberty Eiffel. If not, see <http://www.gnu.org/licenses/>.
- --
- deferred class LIBERTY_ASM_PROXY_VISITOR
- inherit
- LIBERTY_ASM_VISITOR
- feature {LIBERTY_ASM_INSTRUCTION_PROXY}
- visit_proxy_new (a_instruction: LIBERTY_ASM_INSTRUCTION_PROXY; type_id: INTEGER) is
- require
- a_instruction /= Void
- deferred
- end
- visit_proxy_invoke (a_instruction: LIBERTY_ASM_INSTRUCTION_PROXY; method_id, type_id: INTEGER) is
- require
- a_instruction /= Void
- deferred
- end
- visit_proxy_jump (a_instruction: LIBERTY_ASM_INSTRUCTION_PROXY; position: INTEGER) is
- require
- a_instruction /= Void
- deferred
- end
- end -- class LIBERTY_ASM_PROXY_VISITOR