mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-26 20:14:46 +01:00
bc21514ecf
As these are shared between Php5 and Php7 parsers they should be in some common place, otherwise we'd have to always reference either one or the other.
18 lines
298 B
Plaintext
18 lines
298 B
Plaintext
<?php
|
|
$meta #
|
|
#semval($) $this->semValue
|
|
#semval($,%t) $this->semValue
|
|
#semval(%n) $this->stackPos-(%l-%n)
|
|
#semval(%n,%t) $this->stackPos-(%l-%n)
|
|
|
|
namespace PhpParser\Parser;
|
|
#include;
|
|
|
|
/* GENERATED file based on grammar/tokens.y */
|
|
final class Tokens
|
|
{
|
|
#tokenval
|
|
const %s = %n;
|
|
#endtokenval
|
|
}
|