summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/vosendparser.tac
blob: 065f8e52a75b0f19fda253fc203768333c7793a9 (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
%{
%}

%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_
}