Skip to content

Commit 78ce900

Browse files
committed
fix: parseBlock Should have parameters in it
1 parent 4aad4e3 commit 78ce900

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
package com.openblocks.moduleinterface.models.code;
22

3+
import java.util.ArrayList;
4+
35
/**
46
* This interface is used by the compiler to convert a block
57
* opcode into java code
68
*/
79
public interface ParseBlockTask {
8-
void parseBlock(String code);
10+
void parseBlock(String code, ArrayList<String> arguments);
911
}

0 commit comments

Comments
 (0)