It looks like TokenBuffer explicitly passes 0 for "parser feature flags" from its constructor. This is wrong; it should either:
- Ideally pass flags of
JsonParser it is constructed with (if any), OR
- Defaults combined from features in question (same as what
JsonParser defaults to)
At first it is probably necessary to just do latter.