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
Every token is one of a few types based on its data size: Bool, Byte, Word, Dword. We currently collapse all the defined tokens into a single flat namespace. This does make it a bit annoying if a token gets moved from one to another (e.g. Byte -> Word to accommodate more values in a later version).
One option is to update the codegen to get rid of the flat namespace (#120 (comment)). The json and binary formats already disambiguate the differently sized token entries.
The text was updated successfully, but these errors were encountered:
Every token is one of a few types based on its data size: Bool, Byte, Word, Dword. We currently collapse all the defined tokens into a single flat namespace. This does make it a bit annoying if a token gets moved from one to another (e.g. Byte -> Word to accommodate more values in a later version).
One option is to update the codegen to get rid of the flat namespace (#120 (comment)). The json and binary formats already disambiguate the differently sized token entries.
The text was updated successfully, but these errors were encountered: