Searched refs:other (Results 1 – 14 of 14) sorted by relevance
/PHP-Parser/lib/PhpParser/ |
H A D | PhpVersion.php | 69 public function equals(PhpVersion $other): bool { argument 70 return $this->id === $other->id; 76 public function newerOrEqual(PhpVersion $other): bool { argument 77 return $this->id >= $other->id; 83 public function older(PhpVersion $other): bool { argument 84 return $this->id < $other->id;
|
/PHP-Parser/test/code/prettyPrinter/ |
H A D | nestedInlineHTML.test | 1 InlineHTML node nested inside other code
|
/PHP-Parser/doc/ |
H A D | 0_Introduction.markdown | 9 A parser is useful for [static analysis][0], manipulation of code and basically any other 13 There are other ways of processing source code. One that PHP supports natively is using the 16 a file. On the other hand, the token stream is much harder to deal with for more complex analysis. 23 would be in other, faster languages like C. Furthermore the people most likely wanting to do 84 Apart from the parser itself, this package also bundles support for some other, related features:
|
H A D | 2_Usage_of_basic_components.markdown | 184 and thus can occur in other expressions. Examples of expressions are `$var` 412 $outDir = '/some/other/path';
|
/PHP-Parser/doc/component/ |
H A D | Performance.markdown | 12 Just by loading Xdebug (without enabling profiling or other more intrusive Xdebug features), you 25 higher level, such as 3000. While the parser itself is recursion free, most other code working on
|
H A D | Error_handling.markdown | 34 The error behavior of the parser (and other components) is controlled by an `ErrorHandler`. Wheneve…
|
H A D | Lexer.markdown | 30 Finally, `PhpParser\Lexer\Emulative` performs other, optional emulations. This lexer is parameteriz… 83 > tokens. However, the general idea behind the example still applies in other cases.
|
H A D | Walking_the_AST.markdown | 158 On the other hand, removing a `Node\Expr` does not make sense: If you have `$a * $b`, there is no
|
/PHP-Parser/ |
H A D | UPGRADE-1.0.md | 30 the autoloader will not be able to load `PHPParser\Parser` or other case variants. 97 …* The classes `Template` and `TemplateLoader` have been removed. You should use some other [code g…
|
H A D | LICENSE | 14 and/or other materials provided with the distribution.
|
H A D | CONTRIBUTING.md | 22 other emulations.
|
H A D | CHANGELOG.md | 213 wrap them in parentheses if required. This allowed fixing a number of other precedence related 412 * Fixed check for token emulation conflicts with other libraries. 443 * Improved compatibility with other libraries that use forward compatibility defines for PHP tokens. 455 * Allow member modifiers as part of namespaced names. These were missed when support for other 652 nested within each other through abuse of variable-variable interpolation syntax) may not be 779 AST traversal. This facilitates use in other context, such as class names in doc comments. 1050 (instead of `Name` instances) similar to other builtin types.
|
H A D | UPGRADE-3.0.md | 81 `global $$foo->bar` are not supported (other differences are in representation only). The PHP 7
|
H A D | UPGRADE-5.0.md | 69 while uses inside other expressions (such as `$x ?? throw $e`) used the `Expr\Throw_` class.
|
Completed in 18 milliseconds