summaryrefslogtreecommitdiffstats
path: root/src/org/jetbrains/java/decompiler/code/instructions/RET.java
diff options
context:
space:
mode:
authorRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-08-28 20:52:43 +0400
committerRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-08-28 20:52:43 +0400
commit663631f0456fcc245dd835889f86541d75161c53 (patch)
treee183fa9777242e2900ff3648a726f05b190bc51b /src/org/jetbrains/java/decompiler/code/instructions/RET.java
parentf864084061806fda5510e50bfd2e69bf1dea406b (diff)
downloadfernflower-663631f0456fcc245dd835889f86541d75161c53.tar
fernflower-663631f0456fcc245dd835889f86541d75161c53.tar.gz
fernflower-663631f0456fcc245dd835889f86541d75161c53.tar.lz
fernflower-663631f0456fcc245dd835889f86541d75161c53.tar.xz
fernflower-663631f0456fcc245dd835889f86541d75161c53.zip
java-decompiler: post-import cleanup (classes moved)
Diffstat (limited to 'src/org/jetbrains/java/decompiler/code/instructions/RET.java')
-rw-r--r--src/org/jetbrains/java/decompiler/code/instructions/RET.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/org/jetbrains/java/decompiler/code/instructions/RET.java b/src/org/jetbrains/java/decompiler/code/instructions/RET.java
new file mode 100644
index 0000000..490ad8c
--- /dev/null
+++ b/src/org/jetbrains/java/decompiler/code/instructions/RET.java
@@ -0,0 +1,26 @@
+package org.jetbrains.java.decompiler.code.instructions;
+
+import java.io.DataOutputStream;
+import java.io.IOException;
+
+import org.jetbrains.java.decompiler.code.Instruction;
+
+public class RET extends Instruction {
+
+ public void writeToStream(DataOutputStream out, int offset) throws IOException {
+ if(wide) {
+ out.writeByte(opc_wide);
+ }
+ out.writeByte(opc_ret);
+ if(wide) {
+ out.writeShort(getOperand(0));
+ } else {
+ out.writeByte(getOperand(0));
+ }
+ }
+
+ public int length() {
+ return wide?4:2;
+ }
+
+}