Shao, Ran

Results 12 comments of Shao, Ran

I have tested the structural typing related code. There's indeed some bugs. However, the example you provided is incorrect use of the syntax. To check whether an Struct object fits...

I think this has already been fixed in the latest main branch. It is not occurred under the version 0.4.0. I think you can use the git repository instead of...

I tried my self with this version: ``` fun fib(n0, n1, c){ if (c == 0) { return n0 } else if (c == 1) { return n1 } return...

And the result is wrong when the nth is higher, I'm still testing.

after fib(92), the result reached the limit of int64(which is the limit of the current bytecode interpreter). however why the stack overflowed after 1020 is still unclear

In current design, eval will use Global namespace as it's namespace. This is for clarity and safe, for example, if you are evaling a string variable rather than a literal...

As for the eval returns null bug, I think it is due to the reason that interpreter's eval method is called within another eval process. So the stackframe information is...

For now, omit the type annotation to avoid the type checker.

Hey I also encountered this problem. I upgraded the server to 4.x version of socket.io, and changed the client version to 2.x, the problem is sovled.

Sorry, the dynamic widget is not my interest right now. And there's other guy who is working on this field, but sadly he is no longer working with me and...