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
Not sure exactly what we should tag as the @name, probably just the whole string including the string delimiters? I think if we naively drop the delimiters and use the string_content we could have issues in the case of "name \" with dquote" because you end up with this \ in the captured text that would have to be unescaped to get name " with dquote. Seems a little complicated.
Then again, maybe if it works better in the 99% case with string_content, we should just do that and be ok with problems in the 1% case?
The text was updated successfully, but these errors were encountered:
Like
"$<-.data.table"
in data.tablehttps://github.com/Rdatatable/data.table/blob/4d42cdc4f73084390eccc589e726519556c1f8a1/R/data.table.R#L2257-L2264
Not sure exactly what we should tag as the
@name
, probably just the whole string including the string delimiters? I think if we naively drop the delimiters and use thestring_content
we could have issues in the case of"name \" with dquote"
because you end up with this\
in the captured text that would have to be unescaped to getname " with dquote
. Seems a little complicated.Then again, maybe if it works better in the 99% case with
string_content
, we should just do that and be ok with problems in the 1% case?The text was updated successfully, but these errors were encountered: