We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aad4e3 commit 78ce900Copy full SHA for 78ce900
lib/src/main/java/com/openblocks/moduleinterface/models/code/ParseBlockTask.java
@@ -1,9 +1,11 @@
1
package com.openblocks.moduleinterface.models.code;
2
3
+import java.util.ArrayList;
4
+
5
/**
6
* This interface is used by the compiler to convert a block
7
* opcode into java code
8
*/
9
public interface ParseBlockTask {
- void parseBlock(String code);
10
+ void parseBlock(String code, ArrayList<String> arguments);
11
}
0 commit comments