mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
19 lines
514 B
Plaintext
19 lines
514 B
Plaintext
---input---
|
|
f"""abc {a["x"]} def"""
|
|
|
|
---tokens---
|
|
'f' Literal.String.Affix
|
|
'"""' Literal.String.Double
|
|
'abc ' Literal.String.Double
|
|
'{' Literal.String.Interpol
|
|
'a' Name
|
|
'[' Punctuation
|
|
'"' Literal.String.Double
|
|
'x' Literal.String.Double
|
|
'"' Literal.String.Double
|
|
']' Punctuation
|
|
'}' Literal.String.Interpol
|
|
' def' Literal.String.Double
|
|
'"""' Literal.String.Double
|
|
'\n' Text.Whitespace
|