summaryrefslogtreecommitdiff
path: root/uitest/ui_logger_dsl/uno_commands.tx
blob: e17d479af240a3b031d58537758bc02d9523f9d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
    This file is for the grammar of the UNO Command Statements
    It's Automatically have 2 modes one with parameters and one without
*/

UNOCommand:
    'Send UNO Command' '(' uno_command_name=STRING ')'  (parameters=parameter)?
;

parameter:
    '{'  parameter_data *= data ','? '}'
;

data:
     ','? key=STRING ':' value= INT|ID
;