Searched refs:output (Results 1 – 14 of 14) sorted by relevance
/PHP-Parser/grammar/ |
H A D | rebuildParsers.php | 42 $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 D | README.md | 26 * The `--debug` option enables emission of debug symbols and creates the `y.output` file.
|
/PHP-Parser/test/PhpParser/ |
H A D | CodeParsingTest.php | 15 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 D | PrettyPrinterTest.php | 33 $output = canonicalize($prettyPrinter->$method($parser->parse($code))); 34 $this->assertSame($expected, $output, $name);
|
/PHP-Parser/test/ |
H A D | updateTests.php | 24 list(, $output) = $codeParsingTest->getParseOutput($parser, $input, $modes); 25 $newTests[] = [$modeLine, [$input, $output]];
|
/PHP-Parser/ |
H A D | .gitignore | 5 grammar/y.output
|
H A D | UPGRADE-1.0.md | 38 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 D | 0_Introduction.markdown | 53 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 D | 2_Usage_of_basic_components.markdown | 94 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 D | JSON_representation.markdown | 32 This will result in the following output (which includes attributes):
|
H A D | Lexer.markdown | 31 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 D | AST_builders.markdown | 80 This will produce the following output with the standard pretty printer:
|
/PHP-Parser/test/code/prettyPrinter/expr/ |
H A D | parentheses.test | 1 Pretty printer generates least-parentheses output
|
/PHP-Parser/test/code/parser/errorHandling/ |
H A D | recovery.test | 212 // 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