Results 114 comments of Limin Fu

This is due to the fact that, the parser will attempt to parse the code as a single expression first, if this fails, normal parsing will take place, which will...

I am not familiar with docker. It would be nice if someone can contribute on this.

This idea sounds interesting. The implementation might even be simpler than you thought. But I am concerned with introducing a new keyword just for this. I wonder if the following...

> Wrapper class sounds like mixin. Not mixin, just plain wrapper. > How does it work with wrapper objects in Dao? It will not mess with those wrapper objects. >...

More or less done:)

Right. In the mean time, we should do more tests on this new feature.

> ``` > var k = (InterB) 0x7ffeff; > var h = (InterA) k; > var m: InterA = k; > ``` The behaviors of these are actually expected. Note...

Please note that, currently, the following also produces `InterB`: ``` javascript var s = (InterA) k; ``` The reason is that an instance of `InterB` has **no** base instance for...

> It is still puzzling for me why io.writeln() with two arguments is expected to print a single value. It actually prints two values, but in the test, only the...

I just changed `std.about()` to append the nominative type names to the returned strings. So `io.writeln( std.about(b) )` will produce `I2[0x7fdb78405c60]:I1`, when the name after `:` is the nominative type...