general cleanups. Removed lots of unused code and redundant error checks

This commit is contained in:
Francesco Cozzuto
2022-08-24 16:46:32 +02:00
parent 71e8a9e4cb
commit cd74dda4a9
29 changed files with 333 additions and 813 deletions
+2 -2
View File
@@ -209,6 +209,6 @@ someFunction(none); # No error. The argument value will be 4.
fun someFunction2(a: int) {}
someFunction2(none); # Error!
fun someFunction(a: int = 1.3) {}
someFunction(none); # Error!
fun someFunction3(a: int = 1.3) {}
someFunction3(none); # Error!
```