This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/snippets/usd/test_composition_arcs.txt
Georg Brandl b40b0cca06 Rename "tests/lexers" to "tests/snippets" and update the contribution
docs to point to both snippets and examplefiles.
2021-01-20 10:57:30 +01:00

101 lines
2.7 KiB
Text

---input---
def Xform "BottleMedical" (
kind = "prop"
payload = @./BottleMedical_payload.usd@</BottleMedical>
variants = {
string modelingVariant = "LiquidBottleLg"
string shadingComplexity = "full"
}
add variantSets = ["modelingVariant", "shadingComplexity"]
)
{
variantSet "modelingVariant" = {
"ALL_VARIANTS" {
}
}
}
---tokens---
'def' Keyword.Tokens
' ' Text.Whitespace
'Xform' Text
' ' Text.Whitespace
'"BottleMedical"' Literal.String
' ' Text.Whitespace
'(' Punctuation
'\n ' Text.Whitespace
'kind' Name.Builtins
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'"prop"' Literal.String
'\n ' Text.Whitespace
'payload' Keyword.Tokens
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'@./BottleMedical_payload.usd@' Literal.String.Interpol
'</BottleMedical>' Name.Namespace
'\n ' Text.Whitespace
'variants' Keyword.Tokens
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'{' Punctuation
'\n ' Text.Whitespace
'string' Keyword.Type
' ' Text.Whitespace
'modelingVariant' Name.Attribute
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'"LiquidBottleLg"' Literal.String
'\n ' Text.Whitespace
'string' Keyword.Type
' ' Text.Whitespace
'shadingComplexity' Name.Attribute
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'"full"' Literal.String
'\n ' Text.Whitespace
'}' Punctuation
'\n ' Text.Whitespace
'add' Keyword.Type
' ' Text.Whitespace
'variantSets' Name.Attribute
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'[' Punctuation
'"modelingVariant"' Literal.String
',' Punctuation
' ' Text.Whitespace
'"shadingComplexity"' Literal.String
']' Punctuation
'\n' Text.Whitespace
')' Punctuation
'\n' Text.Whitespace
'{' Punctuation
'\n ' Text.Whitespace
'variantSet' Keyword.Tokens
' ' Text.Whitespace
'"modelingVariant"' Literal.String
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'{' Punctuation
'\n ' Text.Whitespace
'"ALL_VARIANTS"' Literal.String
' ' Text.Whitespace
'{' Punctuation
'\n ' Text.Whitespace
'}' Punctuation
'\n ' Text.Whitespace
'}' Punctuation
'\n' Text.Whitespace
'}' Punctuation
'\n' Text.Whitespace