Searched refs:kmyacc (Results 1 – 3 of 3) sorted by relevance
5 * `parser.template`: A `kmyacc` parser prototype file for PHP6 * `rebuildParsers.php`: Preprocesses the grammar and builds the parser using `kmyacc`11 The `.y` file is a normal grammar in `kmyacc` (`yacc`) style, with some transformations23 * The `KMYACC` environment variable can be used to specify an alternative `kmyacc` binary.24 By default the `phpyacc` dev dependency will be used. To use the original `kmyacc`, you25 need to compile [moriyoshi's fork](https://github.com/moriyoshi/kmyacc-forked).
16 $kmyacc = getenv('KMYACC'); variable17 if (!$kmyacc) {19 $kmyacc = __DIR__ . '/../vendor/bin/phpyacc'; variable42 $output = execCmd("$kmyacc $additionalArgs -m $skeletonFile -p $name $tmpGrammarFile");
4 grammar/kmyacc.exe
Completed in 6 milliseconds