Max Graey

Results 346 comments of Max Graey

Currently custom type casting not possible in AssemblyScript unfortunately. But you could open issue in AS repo and request such feature)

It needs some investigation because I use monaco editor and I'm not sure it support walt syntax. In rest parts it's possible

Yes, it seems to be possible

Yes, I will plan to implement this, as well as saving and import gists from github. But unfortunately I'm pretty busy right now on other commercial projects.

Yes. I'll update screenshots ASAP

Yeah, screenshots should update. But I working on next version which have slightly different colours again.

```diff - var y = (e) => { M(), Te() }; + var y = ( ) => { M(), Te() }; y(); ``` much better do this: ```diff -...

It's called eta-reduction: ```diff - var xc = (s) => { Ya(() => s()) } + var xc = (s) => { Ya(s) } ``` Probably make sense, create some...

`mul + add` pretty common operation which could be speedup by calling only once instead two (which also required unpack same arguments twice). For [example](https://github.com/AssemblyScript/assemblyscript/blob/89416525cc0ffc8c9493b29d6e76a685f19dc54e/src/tokenizer.ts#L1353). I could remove rest wasm...

Yep, syntax highlight is broken in many places!