Parse but ignore invokedynamic related constant pool entries.
[SquirrelJME.git] / tools / squirreljme-debugger / src / main / java / cc / squirreljme / debugger / RemoteInstructionViewer.java
blob503fded70cb27767aa93e0c017df101cd529a4e6
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // Multi-Phasic Applications: SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc.squirreljme.debugger;
12 import cc.squirreljme.runtime.cldc.debug.Debugging;
14 /**
15 * Views remote instructions.
17 * @since 2024/01/22
19 public class RemoteInstructionViewer
20 implements InstructionViewer
22 /**
23 * {@inheritDoc}
24 * @since 2024/01/22
26 @Override
27 public int address()
29 throw Debugging.todo();
32 /**
33 * {@inheritDoc}
34 * @since 2024/01/22
36 @Override
37 public String mnemonic()
39 throw Debugging.todo();