-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathYACCDEFS.PAS
28 lines (23 loc) · 874 Bytes
/
YACCDEFS.PAS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{********************************************************}
{* *}
{* YACC tool tokens define unit *}
{* *}
{* File name : YACCDEFS.PAS *}
{* *}
{* Programming: Russlan Kafri - 1999 *}
{* *}
{********************************************************}
unit YaccDefs;
interface
const lexNone = 0;
lexError = $FFFF;
lexDPercent = 1;
lexDeclCommand = 2;
lexIdentifier = 3;
lexColen = 4;
lexSemi = 5;
lexBar = 6;
lexBody = 7;
lexEOF = 8;
implementation
end.