This avoids a biggish eight-byte `tag_table_id` tag in favor of
autoserialized integer tags, which are smaller and can be later
used to encode them in the optimal number of bytes. `NodeId` was
u32 after all.
Previously:
<------------- len1 -------------->
tag_table_* <len1> tag_table_id 88 <nodeid in 8 bytes>
tag_table_val <len2> <actual data>
<-- len2 --->
Now:
<--------------- len --------------->
tag_table_* <len> U32 <nodeid in 4 bytes> <actual data>
|
||
|---|---|---|
| .. | ||
| common.rs | ||
| creader.rs | ||
| csearch.rs | ||
| cstore.rs | ||
| decoder.rs | ||
| encoder.rs | ||
| filesearch.rs | ||
| loader.rs | ||
| macro_import.rs | ||
| mod.rs | ||
| tydecode.rs | ||
| tyencode.rs | ||