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
The current mechanism requires conversion of the entire AST data only to insert here-doc contents into the AST. Can we avoid this behavior by using RefCell and only modifying the relevant part of the AST?
The current mechanism requires conversion of the entire AST data only to insert here-doc contents into the AST. Can we avoid this behavior by using
RefCell
and only modifying the relevant part of the AST?The new type definitions will be:
Todo:
HereDoc::content
inRefCell
RedirBody::HereDoc
's value inRc
Parser::unread_here_docs
to a list ofRc<HereDoc>
Parser::read_here_docs
Fill
The text was updated successfully, but these errors were encountered: