k88936
k88936
im working on splitting code into different processors,and writing a framework [https://github.com/k88936/Splitter](url) ,But i did not find a class similar to **_function_** (maybe mindcode dosen`t work on that) i d...
> Regarding the function class - what do you need it for? i need to know 1. what other function is called(just the name in the source code is enough...
```java public CompilerOutput compile(String sourceCode) { String instructions = ""; try { long parseStart = System.nanoTime(); final Seq program = parse(sourceCode); if (messages.stream().anyMatch(CompilerMessage::isError)) { return new CompilerOutput("", messages); } printParseTree(program);...
and shamefully i still can't understand mechnics of mindcode in detail,maybe i need your help to realize the function call,return ,recursion,memory model in Splitter. interface with docs on writing :...
> I might be able to help somewhat if you described what you intend to do in greater detail. https://github.com/k88936/Splitter/blob/master/README.md Generates some logic code for efficient implementation of function calls...