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 the common case, each ParserChunk will be addressing a new node, but in the event of a parser error a ParserChunk may be used to move an existing node.
I'm worried that developers won't code expecting this, and end up with weird bugs as a result.
We could add a boolean to the ParserChunk to indicate that the node isn't new. The idea is this will increase the likelihood that developers will handle that possibility.
The text was updated successfully, but these errors were encountered:
In the common case, each
ParserChunk
will be addressing a new node, but in the event of a parser error aParserChunk
may be used to move an existing node.I'm worried that developers won't code expecting this, and end up with weird bugs as a result.
We could add a boolean to the
ParserChunk
to indicate that the node isn't new. The idea is this will increase the likelihood that developers will handle that possibility.The text was updated successfully, but these errors were encountered: