Searched refs:parse_file (Results 1 – 10 of 10) sorted by relevance
/php-ast/tests/ |
H A D | parse_file_not_existing.phpt | 2 ast\parse_file() on file that does not exist 7 ast\parse_file(__DIR__ . '/non_existing_file.php', $version=70); 14 RuntimeException: ast\parse_file(%stests/non_existing_file.php): %sailed to open stream: No such fi… 16 #0 %s(%d): ast\parse_file('%s', %d)
|
H A D | parse_file_parse_error.phpt | 2 ast\parse_file() on file with parse error 7 ast\parse_file(__DIR__ . '/invalid_file.php', $version=70); 16 #0 %s(%d): ast\parse_file('%s', %d)
|
H A D | parse_file.phpt | 2 ast\parse_file() on valid file 8 $ast = ast\parse_file(__DIR__ . '/valid_file.php', $version=70);
|
H A D | empty_file_parse.phpt | 2 ast\parse_file() with empty file 7 $file = ast\parse_file(__DIR__ . '/empty_file.php', $version=70);
|
H A D | zpp_errors.phpt | 8 try { ast\parse_file(); } 18 ast\parse_file() expects at least 1 %s, 0 given
|
/php-ast/ |
H A D | ast_arginfo.h | 39 ZEND_FUNCTION(parse_file); 49 ZEND_NS_FE("ast", parse_file, arginfo_ast_parse_file)
|
H A D | ast.stub.php | 21 function parse_file(string $filename, int $version): \ast\Node {} function
|
H A D | ast_stub.php | 230 function parse_file(string $filename, int $version) function
|
H A D | README.md | 51 * `ast\parse_file(string $filename, int $version)` 62 `ast\parse_file()`, which accepts a file path. Additionally, both functions require a `$version` 68 $ast = ast\parse_file('file.php', $version=100); 496 The `ast\parse_code()` and `ast\parse_file()` functions each accept a required AST `$version`
|
H A D | ast.c | 1196 PHP_FUNCTION(parse_file) { in PHP_FUNCTION() argument
|
Completed in 22 milliseconds