IR0NSIGHT

Results 8 issues of IR0NSIGHT

3den Enhanced | Steam | http://steamcommunity.com/sharedfiles/filedetails/?id=623475643 ace | Steam | http://steamcommunity.com/sharedfiles/filedetails/?id=463939057 CBA_A3 | Steam | http://steamcommunity.com/sharedfiles/filedetails/?id=450814997 LAMBS_Danger.fsm | Steam | http://steamcommunity.com/sharedfiles/filedetails/?id=1858075458 LAMBS_RPG | Steam | http://steamcommunity.com/sharedfiles/filedetails/?id=1858070328 LAMBS_Suppression | Steam |...

kind/bug

_looters = missionNamespace getVariable ["looters", createHashMap]; _looters set [name _unit, (_looters getOrDefault [name _unit, 0]) + 1]; error code: Identifier(_looters) and Identifier(getOrDefault) is not a valid combination of expressions. Maybe...

```sh # javascript backend (default) max-priv@NOAH367-L:~/Dokumente/repos/fasteffekt$ effekt.sh -b ./chez-lift-runner.effekt && ./out/chez_lift_runner hello world i am args Cons(hello, Cons(world, Cons(i, Cons(am, Cons(args, Nil()))))) # chez lift backend max-priv@NOAH367-L:~/Dokumente/repos/fasteffekt$ effekt.sh -b ./chez-lift-runner.effekt...

unexpected behaviour: at the moment: array of size n allows array.put(n, x) and will autoresize to n+1 length expected behaviour: array.put(i, n) throws "array index out of bounds" or similar...

requires-design

linter bug: Unbox requires a boxed type, but got Array[Int].effekt minified example: ``` def test(arr: Array[Int]) = { arr.put(3,12) } ```

bug

A Stepper/Debugger that allows to set breakpoints and see the state of the program during runtime would be very helpful

feature

since Effekt has no stepper, i have to rely on printline logging to debug. Recently i had a Record Planet(x: double,y: double,z: double,vx: double, vy: double, vz: double, mass: double)...

feature

# expected behaviour: WHEN i run ```sh effekt.sh myFile.effekt hello world ``` THEN myFile.effekt main() gets executed AND commandLineArgs() returns ["hello","world"] # observed behaviour: WHEN i run ```sh effekt.sh myFile.effekt...

feature