nevalang / neva

🌊 Dataflow programming language with static types and implicit parallelism. Compiles to machine code and Go
https://nevalang.org
MIT License
124 stars 7 forks source link

[Runtime] Use slices for structs, not maps (flacky tests) #698

Open emil14 opened 2 months ago

emil14 commented 2 months ago

Example:

expected: { data int, idx int, last bool }
got: { last bool, data int, idx int }

Could also be good for other things because structure's fields should typically have order.