mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
---input---
|
|
foo = "this string should" # not extend into the comment that contains "quotes"
|
|
bar = 'same with a' # basic 'string'
|
|
baz = """same with a""" # multiline """basic string"""
|
|
spam = '''same with a''' # multiline '''literal string'''
|
|
|
|
---tokens---
|
|
'foo' Name
|
|
' ' Text.Whitespace
|
|
'=' Operator
|
|
' ' Text.Whitespace
|
|
'"' Literal.String.Double
|
|
'this string should' Literal.String.Double
|
|
'"' Literal.String.Double
|
|
' ' Text.Whitespace
|
|
'# not extend into the comment that contains "quotes"' Comment.Single
|
|
'\n' Text.Whitespace
|
|
|
|
'bar' Name
|
|
' ' Text.Whitespace
|
|
'=' Operator
|
|
' ' Text.Whitespace
|
|
"'" Literal.String.Single
|
|
"same with a'" Literal.String.Single
|
|
' ' Text.Whitespace
|
|
"# basic 'string'" Comment.Single
|
|
'\n' Text.Whitespace
|
|
|
|
'baz' Name
|
|
' ' Text.Whitespace
|
|
'=' Operator
|
|
' ' Text.Whitespace
|
|
'"""' Literal.String.Double
|
|
'same with a' Literal.String.Double
|
|
'"""' Literal.String.Double
|
|
' ' Text.Whitespace
|
|
'# multiline """basic string"""' Comment.Single
|
|
'\n' Text.Whitespace
|
|
|
|
'spam' Name
|
|
' ' Text.Whitespace
|
|
'=' Operator
|
|
' ' Text.Whitespace
|
|
"'''" Literal.String.Single
|
|
'same with a' Literal.String.Single
|
|
"'''" Literal.String.Single
|
|
' ' Text.Whitespace
|
|
"# multiline '''literal string'''" Comment.Single
|
|
'\n' Text.Whitespace
|