blob: fe3d019f207f27afe28ef6cf309e6f2d9ce90ad8 (
plain)
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
29
30
31
|
%{
%}
#include def.tin
%start vosend
%token CONNECT_
%token DELAY_
%token INTERNAL_
%token METHOD_
%token SERVER_
%%
vosend : {VOSendCmdConnect 1}
| METHOD_ {ProcessSendCmdGet pvo method}
| SERVER_ {ProcessSendCmdGet pvo server}
| INTERNAL_ {ProcessSendCmdYesNo pvo hv}
| DELAY_ {ProcessSendCmdGet pvo delay}
| CONNECT_ {VOSendCmdConnect}
;
%%
proc vosend::yyerror {msg} {
variable yycnt
variable yy_current_buffer
variable index_
ParserError $msg $yycnt $yy_current_buffer $index_
}
|