summaryrefslogtreecommitdiffstats
path: root/tests/snippets/php/test_string_escaping_run.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/snippets/php/test_string_escaping_run.txt')
-rw-r--r--tests/snippets/php/test_string_escaping_run.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/snippets/php/test_string_escaping_run.txt b/tests/snippets/php/test_string_escaping_run.txt
new file mode 100644
index 0000000..e31fbfc
--- /dev/null
+++ b/tests/snippets/php/test_string_escaping_run.txt
@@ -0,0 +1,16 @@
+---input---
+<?php $x="{\""; ?>
+
+---tokens---
+'<?php' Comment.Preproc
+' ' Text
+'$x' Name.Variable
+'=' Operator
+'"' Literal.String.Double
+'{' Literal.String.Double
+'\\"' Literal.String.Escape
+'"' Literal.String.Double
+';' Punctuation
+' ' Text
+'?>' Comment.Preproc
+'\n' Other