Nidin Vinayakan

Results 39 comments of Nidin Vinayakan

Moved to v2.0.0 Plan is to reduce calls and do a bulk allocation for array literals.

That is a good idea, I was also thinking about it. TurboScript's ultimate goal is to compile pure typescript to WASM. right now i am implementing generic data types for...

My personal goal for TurboScript is to be a superset of TypeScript and keep the JavaScript like syntax. On Wed 12. Apr 2017 at 4:44 PM, Wink Saville wrote: >...

Right now I am only thinking about class based objects. Keeping JavaScript dialect is a requirement. When WASM garbage collector ready, supporting pure JavaScript features are not a problem. There...

Same philosophy here. MVP only support manual memory management. There is another possible optimization, we can auto free allocated memory if it's not referencing outside of a function and the...

It is doable. I will try it next week.

😄 btw @dcodeIO is Array type implemented in AssemblyScript

@MaxGraey I would simplify ```typescript let arr2: int32[] = new int32[](2); ``` to ```typescript let arr2: int32[] = [](2); ```

I was thinking about it. it's on my list.