You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In JS messgen parser, if the messages listed in a way that the ID of a complex message is less than the ID of one of its internal messages, the parser does not work and does not fire any error. Example:
id: 68descr: "I am inside the bottle"fields:
- { name: density, type: uint64 }
- { name: is_coca_cola, type: uint8 }
Messgen would generate JS files without any warnings and successfully parse every message. However, when message "bottle" is received, it will have the following properties:
offset: NaN
isComplex: false (which is wrong)
The text was updated successfully, but these errors were encountered:
In JS messgen parser, if the messages listed in a way that the ID of a complex message is less than the ID of one of its internal messages, the parser does not work and does not fire any error. Example:
bottle.yaml:
liquid.yaml:
Messgen would generate JS files without any warnings and successfully parse every message. However, when message "bottle" is received, it will have the following properties:
offset: NaN
isComplex: false (which is wrong)
The text was updated successfully, but these errors were encountered: