mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-02-19 23:54:55 +01:00
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
|
|
}
|