summaryrefslogtreecommitdiff
path: root/tests/lexers/resource/example.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lexers/resource/example.txt')
-rw-r--r--tests/lexers/resource/example.txt77
1 files changed, 77 insertions, 0 deletions
diff --git a/tests/lexers/resource/example.txt b/tests/lexers/resource/example.txt
new file mode 100644
index 00000000..d8f52401
--- /dev/null
+++ b/tests/lexers/resource/example.txt
@@ -0,0 +1,77 @@
+---input---
+root:table {
+ usage:string { "Usage: genrb [Options] files" }
+ version:int { 122 }
+ errorcodes:array {
+ :string { "Invalid argument" }
+ :string { "File not found" }
+ :string { "\x00 \r \t \n \u1234" }
+ }
+}
+
+---tokens---
+'root' Name
+':table' Keyword
+' ' Text
+'{' Operator
+'\n ' Text
+'usage' Name
+':string' Keyword
+' ' Text
+'{' Operator
+' ' Text
+'"' Literal.String
+'Usage: genrb [Options] files' Literal.String
+'"' Literal.String
+' ' Text
+'}' Operator
+'\n ' Text
+'version' Name
+':int' Keyword
+' ' Text
+'{' Operator
+' ' Text
+'122' Literal.Number.Integer
+' ' Text
+'}' Operator
+'\n ' Text
+'errorcodes' Name
+':array' Keyword
+' ' Text
+'{' Operator
+'\n ' Text
+':string' Keyword
+' ' Text
+'{' Operator
+' ' Text
+'"' Literal.String
+'Invalid argument' Literal.String
+'"' Literal.String
+' ' Text
+'}' Operator
+'\n ' Text
+':string' Keyword
+' ' Text
+'{' Operator
+' ' Text
+'"' Literal.String
+'File not found' Literal.String
+'"' Literal.String
+' ' Text
+'}' Operator
+'\n ' Text
+':string' Keyword
+' ' Text
+'{' Operator
+' ' Text
+'"' Literal.String
+'\\x00 \\r \\t \\n \\u1234' Literal.String
+'"' Literal.String
+' ' Text
+'}' Operator
+'\n ' Text
+'}' Operator
+'\n' Text
+
+'}' Operator
+'\n' Text