prism/tests/languages/t4-cs/block_standard_feature.test

79 lines
1.2 KiB
Plaintext

<#
for (var i = 0; i < 10; i++)
{
if (i % 2 == 0)
{
#>
The number <#= i #> is even.
<#
}
}
#>
----------------------------------------------------
[
["block", [
["standard", [
["delimiter", "<#"],
["content", [
["keyword", "for"],
["punctuation", "("],
["class-name", [
["keyword", "var"]
]],
" i ",
["operator", "="],
["number", "0"],
["punctuation", ";"],
" i ",
["operator", "<"],
["number", "10"],
["punctuation", ";"],
" i",
["operator", "++"],
["punctuation", ")"],
["punctuation", "{"],
["keyword", "if"],
["punctuation", "("],
"i ",
["operator", "%"],
["number", "2"],
["operator", "=="],
["number", "0"],
["punctuation", ")"],
["punctuation", "{"]
]],
["delimiter", "#>"]
]]
]],
"\r\nThe number ",
["block", [
["expression", [
["delimiter", "<#="],
["content", [" i "]],
["delimiter", "#>"]
]]
]],
" is even.\r\n",
["block", [
["standard", [
["delimiter", "<#"],
["content", [
["punctuation", "}"],
["punctuation", "}"]
]],
["delimiter", "#>"]
]]
]]
]
----------------------------------------------------
Checks for standard control blocks.