Skip to content

Commit a1a0767

Browse files
committed
2.9.7 changes
1 parent bd9dcd2 commit a1a0767

File tree

5 files changed

+27
-0
lines changed

5 files changed

+27
-0
lines changed

libs/jruby-9.0.0.0.rc1.jar

12 MB
Binary file not shown.

libs/jython-standalone-2.7.0.jar

35.3 MB
Binary file not shown.

plugins/Skeleton.gy

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import the.bytecode.club.bytecodeviewer.api.*;
2+
import java.util.ArrayList;
3+
import org.objectweb.asm.tree.ClassNode;
4+
import the.bytecode.club.bytecodeviewer.decompilers.*;
5+
6+
public class Skeleton extends Plugin {
7+
8+
@Override
9+
public void execute(ArrayList<ClassNode> classNodesList) {
10+
PluginConsole gui = new PluginConsole("Skeleton");
11+
gui.setVisible(true);
12+
gui.appendText("executed skeleton");
13+
}
14+
}

plugins/Skeleton.rb

Whitespace-only changes.

plugins/skeleton.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from the.bytecode.club.bytecodeviewer.api import Plugin
2+
from the.bytecode.club.bytecodeviewer.api import PluginConsole
3+
from java.lang import System
4+
from java.lang import Boolean
5+
from java.util import ArrayList
6+
from org.objectweb.asm.tree import ClassNode
7+
8+
class skeleton(Plugin):
9+
10+
def execute(classNodeList, poop): #for some reason it requires a second arg
11+
gui = PluginConsole("Skeleton")
12+
gui.setVisible(Boolean.TRUE)
13+
gui.appendText("exceuted skeleton")

0 commit comments

Comments
 (0)