Home
last modified time | relevance | path

Searched refs:other (Results 1 – 14 of 14) sorted by relevance

/PHP-Parser/lib/PhpParser/
H A DPhpVersion.php69 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 DnestedInlineHTML.test1 InlineHTML node nested inside other code
/PHP-Parser/doc/
H A D0_Introduction.markdown9 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 D2_Usage_of_basic_components.markdown184 and thus can occur in other expressions. Examples of expressions are `$var`
412 $outDir = '/some/other/path';
/PHP-Parser/doc/component/
H A DPerformance.markdown12 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 DError_handling.markdown34 The error behavior of the parser (and other components) is controlled by an `ErrorHandler`. Wheneve…
H A DLexer.markdown30 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 DWalking_the_AST.markdown158 On the other hand, removing a `Node\Expr` does not make sense: If you have `$a * $b`, there is no
/PHP-Parser/
H A DUPGRADE-1.0.md30 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 DLICENSE14 and/or other materials provided with the distribution.
H A DCONTRIBUTING.md22 other emulations.
H A DCHANGELOG.md206 wrap them in parentheses if required. This allowed fixing a number of other precedence related
405 * Fixed check for token emulation conflicts with other libraries.
436 * Improved compatibility with other libraries that use forward compatibility defines for PHP tokens.
448 * Allow member modifiers as part of namespaced names. These were missed when support for other
645 nested within each other through abuse of variable-variable interpolation syntax) may not be
772 AST traversal. This facilitates use in other context, such as class names in doc comments.
1043 (instead of `Name` instances) similar to other builtin types.
H A DUPGRADE-3.0.md81 `global $$foo->bar` are not supported (other differences are in representation only). The PHP 7
H A DUPGRADE-5.0.md69 while uses inside other expressions (such as `$x ?? throw $e`) used the `Expr\Throw_` class.

Completed in 30 milliseconds