refactor php7

This commit is contained in:
Vadym Slizov
2020-05-13 00:16:36 +03:00
parent aab9da03f0
commit 6a84d58ee6
54 changed files with 29034 additions and 28821 deletions

View File

@@ -1,9 +1,9 @@
package token
type TokenID int
type ID int
const (
T_INCLUDE TokenID = iota + 57346
T_INCLUDE ID = iota + 57346
T_INCLUDE_ONCE
T_EXIT
T_IF
@@ -144,6 +144,6 @@ const (
)
type Token struct {
ID TokenID
ID ID
Value []byte
}