Skip to content

Commit eb24f0d

Browse files
committed
ignore some bits, add test script
--HG-- branch : JLexPHP extra : convert_revision : svn%3A6e7b9e80-5218-0410-8339-b7667638d355/wez/php/JLexPHP%40138
1 parent 1291a26 commit eb24f0d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
include 'c.lex.php';
3+
error_reporting(E_ALL);
4+
$L = new CLexer(popen('gcc -E /usr/include/err.h', 'r'));;
5+
6+
while ($t = $L->nextToken()) {
7+
print_r($t);
8+
}
9+

0 commit comments

Comments
 (0)