Miki

Results 152 comments of Miki

We should follow the same resolution order as in expressions. See #194.

Example1: ``` struct ExpressionTest { uint32 value1 = 2147483648; // 2^31 uint32 value2 = 2147483648; // 2^31 function uint32 getSum() { return value1 + value2; } }; ``` Java: `getSum()...

Please note, that division and modulo operator differs in Python. See #152.

Thank you to bring this topic up. Your idea one Python module per Zserio package is very good and I guess that Python users will be very happy with this...

Yes, I agree, `__init__.py` would be better. This was even implemented but then we have run to the different difficulties and we had to get rid of `__init__.py`. Difficulties were...

Don't worry about edits. :-) It's not so easy and obvious. It is good to discuss. The more heads, the more knowledge. It might be that we find out something...

Another problem with emitting one Python module per Zserio package is cyclic imports which are allowed in Zserio.

Consider to improve the evaluation of this warning as well. There are some obvious use cases where text compare is not enough but which can be solved anyway. Example: ```...

> Consider to improve the evaluation of this warning as well. There are some obvious use cases where text compare is not enough but which can be solved anyway. Example:...