summaryrefslogtreecommitdiff
path: root/tests/lexers/lsl
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2021-01-18 21:24:00 +0100
committerGeorg Brandl <georg@python.org>2021-01-18 22:08:36 +0100
commit2a3d3a7d5b9c60dedf6638d876161d9563faebcf (patch)
tree809c0b4a686db98f5954afa1944404cd9652c6b2 /tests/lexers/lsl
parentf0445be718da83541ea3401aad882f3937147263 (diff)
downloadpygments-git-examplefiles.tar.gz
Move test_examplefiles to new tests/lexers scheme.examplefiles
Diffstat (limited to 'tests/lexers/lsl')
-rw-r--r--tests/lexers/lsl/example.txt80
1 files changed, 80 insertions, 0 deletions
diff --git a/tests/lexers/lsl/example.txt b/tests/lexers/lsl/example.txt
new file mode 100644
index 00000000..05bc2074
--- /dev/null
+++ b/tests/lexers/lsl/example.txt
@@ -0,0 +1,80 @@
+---input---
+default
+{
+ state_entry()
+ {
+ llSay(0, "Hello, Avatar!");
+ }
+
+ touch_start(integer total_number)
+ {
+ llSay(0, "Touched.");
+ }
+}
+
+---tokens---
+'default' Name.Class
+'\n' Text.Whitespace
+
+'{' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'state_entry' Name.Builtin
+'(' Punctuation
+')' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'{' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'llSay' Name.Function
+'(' Punctuation
+'0' Literal.Number.Integer
+',' Punctuation
+' ' Text.Whitespace
+'"' Literal.String.Double
+'Hello, Avatar!' Literal.String.Double
+'"' Literal.String.Double
+')' Punctuation
+';' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'}' Punctuation
+'\n' Text.Whitespace
+
+' \n ' Text.Whitespace
+'touch_start' Name.Builtin
+'(' Punctuation
+'integer' Keyword.Type
+' ' Text.Whitespace
+'total_number' Name.Variable
+')' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'{' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'llSay' Name.Function
+'(' Punctuation
+'0' Literal.Number.Integer
+',' Punctuation
+' ' Text.Whitespace
+'"' Literal.String.Double
+'Touched.' Literal.String.Double
+'"' Literal.String.Double
+')' Punctuation
+';' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'}' Punctuation
+'\n' Text.Whitespace
+
+'}' Punctuation
+'\n' Text.Whitespace