summaryrefslogtreecommitdiff
path: root/test/scanners/php/namespaces.expected.raydebug
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2010-04-14 23:59:03 +0000
committermurphy <murphy@rubychan.de>2010-04-14 23:59:03 +0000
commit200144dd009d33ff8334be24d0fb2cc91b3a87ab (patch)
treef46c939cd01b8d4165b5d9f3444c20e072b51408 /test/scanners/php/namespaces.expected.raydebug
parent612a14e17bdae5dbb5b13cdceec797523725cbbe (diff)
downloadcoderay-200144dd009d33ff8334be24d0fb2cc91b3a87ab.tar.gz
Moving scanner tests into separate repository. The repository can be reached at http://svn.rubychan.de/coderay-scanner-tests/trunk.
Diffstat (limited to 'test/scanners/php/namespaces.expected.raydebug')
-rw-r--r--test/scanners/php/namespaces.expected.raydebug9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/scanners/php/namespaces.expected.raydebug b/test/scanners/php/namespaces.expected.raydebug
deleted file mode 100644
index 47074a9..0000000
--- a/test/scanners/php/namespaces.expected.raydebug
+++ /dev/null
@@ -1,9 +0,0 @@
-inline_delimiter(<?php)
-reserved(namespace) ident(foo)operator(;)
-reserved(use) ident(blah)operator(\\)ident(blah) reserved(as) ident(foo)operator(;)
-
-local_variable($a) operator(=) reserved(new) ident(my)operator(\\)ident(name)operator(()operator(\))operator(;) comment(// instantiates "foo\\my\\name" class)
-ident(foo)operator(\\)ident(bar)operator(::)ident(name)operator(()operator(\))operator(;) comment(// calls static method "name" in class "blah\\blah\\bar")
-ident(my)operator(\\)ident(bar)operator(()operator(\))operator(;) comment(// calls function "foo\\my\\bar")
-local_variable($a) operator(=) ident(my)operator(\\)constant(BAR)operator(;) comment(// sets $a to the value of constant "foo\\my\\BAR")
-inline_delimiter(?>)