summaryrefslogtreecommitdiff
path: root/tests/lexers/sp
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/sp
parentf0445be718da83541ea3401aad882f3937147263 (diff)
downloadpygments-git-examplefiles.tar.gz
Move test_examplefiles to new tests/lexers scheme.examplefiles
Diffstat (limited to 'tests/lexers/sp')
-rw-r--r--tests/lexers/sp/example.txt46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/lexers/sp/example.txt b/tests/lexers/sp/example.txt
new file mode 100644
index 00000000..217e2252
--- /dev/null
+++ b/tests/lexers/sp/example.txt
@@ -0,0 +1,46 @@
+---input---
+#include <sourcemod>
+
+// Single line comment
+/* Multi line
+ comment */
+
+public OnPluginStart() {
+ PrintToServer("Hello.");
+}
+
+---tokens---
+'#' Comment.Preproc
+'include <sourcemod>' Comment.Preproc
+'\n' Comment.Preproc
+
+'\n' Text
+
+'// Single line comment\n' Comment.Single
+
+'/* Multi line\n comment */' Comment.Multiline
+'\n' Text
+
+'\n' Text
+
+'public' Keyword
+' ' Text
+'OnPluginStart' Name.Builtin
+'(' Punctuation
+')' Punctuation
+' ' Text
+'{' Punctuation
+'\n' Text
+
+' ' Text
+'PrintToServer' Name.Builtin
+'(' Punctuation
+'"' Literal.String
+'Hello.' Literal.String
+'"' Literal.String
+')' Punctuation
+';' Punctuation
+'\n' Text
+
+'}' Punctuation
+'\n' Text