summaryrefslogtreecommitdiff
path: root/tests/lexers/lsl/example.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lexers/lsl/example.txt')
-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