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
Currently "x":1 produce sequence of tokens PJ_TOK_STR (with "x"), PJ_TOK_KEY and PJ_TOK_NUM (with "1").
Make interface more compatible with popular parsers and produce PJ_TOK_KEY (with "x") and PJ_TOK_NUM (with "1") instead. This requires no knowledge of hierarchy and thus shouldn't introduce much of performance degradation.
The text was updated successfully, but these errors were encountered:
Currently
"x":1
produce sequence of tokensPJ_TOK_STR
(with"x"
),PJ_TOK_KEY
andPJ_TOK_NUM
(with"1"
).Make interface more compatible with popular parsers and produce
PJ_TOK_KEY
(with"x"
) andPJ_TOK_NUM
(with"1"
) instead. This requires no knowledge of hierarchy and thus shouldn't introduce much of performance degradation.The text was updated successfully, but these errors were encountered: