Home
last modified time | relevance | path

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

/PHP-Parser/grammar/
H A DrebuildParsers.php42 $output = execCmd("$kmyacc $additionalArgs -m $skeletonFile -p $name $tmpGrammarFile"); variable
67 $output = trim(shell_exec("$cmd 2>&1") ?? '');
68 if ($output !== "") {
70 echo $output;
72 return $output;
H A DREADME.md26 * The `--debug` option enables emission of debug symbols and creates the `y.output` file.
/PHP-Parser/test/PhpParser/
H A DCodeParsingTest.php15 list($stmts, $output) = $this->getParseOutput($parser, $code, $modes);
17 $this->assertSame($expected, $output, $name);
36 $output = '';
38 $output .= $this->formatErrorMessage($error, $code) . "\n";
47 $output .= $dumper->dump($stmts, $code);
50 return [$stmts, canonicalize($output)];
H A DPrettyPrinterTest.php33 $output = canonicalize($prettyPrinter->$method($parser->parse($code)));
34 $this->assertSame($expected, $output, $name);
/PHP-Parser/test/
H A DupdateTests.php24 list(, $output) = $codeParsingTest->getParseOutput($parser, $input, $modes);
25 $newTests[] = [$modeLine, [$input, $output]];
/PHP-Parser/
H A D.gitignore5 grammar/y.output
H A DUPGRADE-1.0.md38 not contain the trailing underscore that may be present in the class name. As such its output will …
42 `Node::getType()` output:
/PHP-Parser/doc/
H A D0_Introduction.markdown53 What output does it produce?
87 that "pretty printing" does not imply that the output is especially pretty. It's just how it's
91 example of how the output looks like).
H A D2_Usage_of_basic_components.markdown94 For the sample code from the previous section, this will produce the following output:
253 The above code will output:
/PHP-Parser/doc/component/
H A DJSON_representation.markdown32 This will result in the following output (which includes attributes):
H A DLexer.markdown31 and will try to emulate `ext/tokenizer` output for that version. This is done using separate `Token…
59 Unlike PHP's own `PhpToken::tokenize()` output, the token array is terminated by a sentinel token w…
H A DAST_builders.markdown80 This will produce the following output with the standard pretty printer:
/PHP-Parser/test/code/prettyPrinter/expr/
H A Dparentheses.test1 Pretty printer generates least-parentheses output
/PHP-Parser/test/code/parser/errorHandling/
H A Drecovery.test212 // The output here drops the loop - would require Error node to handle this
252 0: // The output here drops the loop - would require Error node to handle this

Completed in 25 milliseconds