diff options
Diffstat (limited to 'ext/tokenizer')
18 files changed, 0 insertions, 90 deletions
diff --git a/ext/tokenizer/tests/token_get_all_basic.phpt b/ext/tokenizer/tests/token_get_all_basic.phpt index f9bc28c6f2..923a1d096b 100644 --- a/ext/tokenizer/tests/token_get_all_basic.phpt +++ b/ext/tokenizer/tests/token_get_all_basic.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : basic functionality <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description : splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - echo "*** Testing token_get_all() : basic functionality ***\n"; // with php open/close tags diff --git a/ext/tokenizer/tests/token_get_all_variation10.phpt b/ext/tokenizer/tests/token_get_all_variation10.phpt index e81643fd61..743af16dd1 100644 --- a/ext/tokenizer/tests/token_get_all_variation10.phpt +++ b/ext/tokenizer/tests/token_get_all_variation10.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with constant tokens <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Using different types of constants in 'source' string to check them for token * integer const - T_LNUMBER(305) diff --git a/ext/tokenizer/tests/token_get_all_variation11.phpt b/ext/tokenizer/tests/token_get_all_variation11.phpt index 3a22a194b7..e569145096 100644 --- a/ext/tokenizer/tests/token_get_all_variation11.phpt +++ b/ext/tokenizer/tests/token_get_all_variation11.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with control structure tokens <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Using different control structure keywords * if..else, elseif - T_IF(301), T_ELSEIF(302), T_ELSE(303) diff --git a/ext/tokenizer/tests/token_get_all_variation12.phpt b/ext/tokenizer/tests/token_get_all_variation12.phpt index 4684edf7f7..e09fc0da8e 100644 --- a/ext/tokenizer/tests/token_get_all_variation12.phpt +++ b/ext/tokenizer/tests/token_get_all_variation12.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with predefined language cons <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Testing token_get_all() with following predefined language constants: * __FILE__ - T_FILE diff --git a/ext/tokenizer/tests/token_get_all_variation13.phpt b/ext/tokenizer/tests/token_get_all_variation13.phpt index 6779048cf0..9136aeec3f 100644 --- a/ext/tokenizer/tests/token_get_all_variation13.phpt +++ b/ext/tokenizer/tests/token_get_all_variation13.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with class/object constructs <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Testing token_get_all() with different class/object keywords * scope related : diff --git a/ext/tokenizer/tests/token_get_all_variation14.phpt b/ext/tokenizer/tests/token_get_all_variation14.phpt index aa41f066fd..bfb968cab8 100644 --- a/ext/tokenizer/tests/token_get_all_variation14.phpt +++ b/ext/tokenizer/tests/token_get_all_variation14.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - invalid token values <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Testing token_get_all() with 'source' string containing invalid/unknown token value * unknown tokens - T_UNKNOWN(307) diff --git a/ext/tokenizer/tests/token_get_all_variation15.phpt b/ext/tokenizer/tests/token_get_all_variation15.phpt index c72bbe41b9..988135f05e 100644 --- a/ext/tokenizer/tests/token_get_all_variation15.phpt +++ b/ext/tokenizer/tests/token_get_all_variation15.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - heredoc string for 'source' <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Testing token_get_all() with heredoc 'source' string with all different types of token and heredoc string within * <<<EOT - T_START_HEREDOC(371) diff --git a/ext/tokenizer/tests/token_get_all_variation16.phpt b/ext/tokenizer/tests/token_get_all_variation16.phpt index f93ec870fc..bd97ff4eb8 100644 --- a/ext/tokenizer/tests/token_get_all_variation16.phpt +++ b/ext/tokenizer/tests/token_get_all_variation16.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with function constructs <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Testing token_get_all() with different function keywords * function - T_FUNCTION(333), return - T_RETURN(335) diff --git a/ext/tokenizer/tests/token_get_all_variation17.phpt b/ext/tokenizer/tests/token_get_all_variation17.phpt index da4df47594..809a46b136 100644 --- a/ext/tokenizer/tests/token_get_all_variation17.phpt +++ b/ext/tokenizer/tests/token_get_all_variation17.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with exception keywords <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Testing token_get_all() with different exception keywords * try - T_TRY(336), diff --git a/ext/tokenizer/tests/token_get_all_variation18.phpt b/ext/tokenizer/tests/token_get_all_variation18.phpt index b057856950..89b0223fc8 100644 --- a/ext/tokenizer/tests/token_get_all_variation18.phpt +++ b/ext/tokenizer/tests/token_get_all_variation18.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with HTML code <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Testing token_get_all() with source string containing HTML code with PHP * HTML tags are considered to be T_INLINE_HTML(311) diff --git a/ext/tokenizer/tests/token_get_all_variation2.phpt b/ext/tokenizer/tests/token_get_all_variation2.phpt index 866a67c6b6..294bec1482 100644 --- a/ext/tokenizer/tests/token_get_all_variation2.phpt +++ b/ext/tokenizer/tests/token_get_all_variation2.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with different arithmetic ope <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Passing 'source' argument with different arithmetic operators to test them for token * Arithmetic operators: +, -, *, /, % are not listed as specific operator tokens, diff --git a/ext/tokenizer/tests/token_get_all_variation3.phpt b/ext/tokenizer/tests/token_get_all_variation3.phpt index fc995918bd..e0171d77a8 100644 --- a/ext/tokenizer/tests/token_get_all_variation3.phpt +++ b/ext/tokenizer/tests/token_get_all_variation3.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with logical operators <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Passing 'source' argument with different logical operators to test them for tokens * and - T_AND_LOGICAL_AND(265), diff --git a/ext/tokenizer/tests/token_get_all_variation4.phpt b/ext/tokenizer/tests/token_get_all_variation4.phpt index be18ddf0b3..3a20e93ae5 100644 --- a/ext/tokenizer/tests/token_get_all_variation4.phpt +++ b/ext/tokenizer/tests/token_get_all_variation4.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with comparison operators <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Passing 'source' argument with different comparison operators to test them for tokens * == - T_IS_EQUAL(283), === - T_IS_IDENTICAL(281), diff --git a/ext/tokenizer/tests/token_get_all_variation5.phpt b/ext/tokenizer/tests/token_get_all_variation5.phpt index 3eed767665..a7c87fb691 100644 --- a/ext/tokenizer/tests/token_get_all_variation5.phpt +++ b/ext/tokenizer/tests/token_get_all_variation5.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with assignment operators <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Passing 'source' argument with different assignment operators to test them for tokens * += - T_PLUS_EQUAL(277), -= - T_MINUS-EQUAL(276), diff --git a/ext/tokenizer/tests/token_get_all_variation6.phpt b/ext/tokenizer/tests/token_get_all_variation6.phpt index 06c13bd32c..42e8a4bcb1 100644 --- a/ext/tokenizer/tests/token_get_all_variation6.phpt +++ b/ext/tokenizer/tests/token_get_all_variation6.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with bitwise operators <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Passing 'source' argument with different bitwise operators to test them for token * << - T_SL(287) diff --git a/ext/tokenizer/tests/token_get_all_variation7.phpt b/ext/tokenizer/tests/token_get_all_variation7.phpt index 6d976a4054..6eff10054b 100644 --- a/ext/tokenizer/tests/token_get_all_variation7.phpt +++ b/ext/tokenizer/tests/token_get_all_variation7.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with increment/decrement oper <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Passing 'source' argument with different increment/decrement operators to test them for token * ++ - T_INC(297) diff --git a/ext/tokenizer/tests/token_get_all_variation8.phpt b/ext/tokenizer/tests/token_get_all_variation8.phpt index 14a051955e..b105a0792d 100644 --- a/ext/tokenizer/tests/token_get_all_variation8.phpt +++ b/ext/tokenizer/tests/token_get_all_variation8.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with type casting operators <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Passing 'source' argument with different type casting operators to test them for token * (int)/(integer) - T_INT_CAST(295), (float)/(real)/(double) - T_DOUBLE_CAST(294), diff --git a/ext/tokenizer/tests/token_get_all_variation9.phpt b/ext/tokenizer/tests/token_get_all_variation9.phpt index 45660e984c..082525a176 100644 --- a/ext/tokenizer/tests/token_get_all_variation9.phpt +++ b/ext/tokenizer/tests/token_get_all_variation9.phpt @@ -4,11 +4,6 @@ Test token_get_all() function : usage variations - with different types of comme <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php -/* Prototype : array token_get_all(string $source) - * Description: splits the given source into an array of PHP language tokens - * Source code: ext/tokenizer/tokenizer.c -*/ - /* * Passing 'source' argument with different style of comments */ |