Fixed the close over methods and member vars bug, but there's something remaining causing the safe_recursive_delete not to work. Gotta save progress and do other stuff
This commit is contained in:
@@ -38,6 +38,14 @@ fun print(toPrint: string) : void {
|
||||
print(charArr);
|
||||
}
|
||||
|
||||
fun print(toPrint: bool): void {
|
||||
if (toPrint)
|
||||
print("true")
|
||||
else
|
||||
print("false")
|
||||
return;
|
||||
}
|
||||
|
||||
fun print(toPrint: int): void {
|
||||
__if_comp__ __C__ {
|
||||
simple_passthrough(toPrint = toPrint::) """
|
||||
|
||||
Reference in New Issue
Block a user