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 function tokenize outputs an array of SourceLines. Is it guaranteed that if i provide it with Text with some multiline code, every line's tokens will be mapped to one SourceLine without any formatting/line changing behaviour?
For example, if I had this single line of oddly written piece of C code:
The function
tokenize
outputs an array ofSourceLine
s. Is it guaranteed that if i provide it withText
with some multiline code, every line's tokens will be mapped to oneSourceLine
without any formatting/line changing behaviour?For example, if I had this single line of oddly written piece of C code:
Would very token (e.g.
int
,do_something
,()
,{
,call_a_function
...) will end up on the sameSourceLine
with every token in sequence?The text was updated successfully, but these errors were encountered: