summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/zscalesendparser.tac
blob: 256db0b863ae260f5e0a5ea5aec4c3e2c950882b (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
%{
%}
#include def.tin

%start zscalesend

%token CONTRAST_
%token SAMPLE_
%token LINE_

%%

zscalesend : CONTRAST_ {ProcessSendCmdGet zscale contrast}
 | SAMPLE_ {ProcessSendCmdGet zscale sample}
 | LINE_ {ProcessSendCmdGet zscale line}
 ;

%%

proc zscalesend::yyerror {msg} {
     variable yycnt
     variable yy_current_buffer
     variable index_

     ParserError $msg $yycnt $yy_current_buffer $index_
}