Rework keyword parser rule
[yangtools.git] / yang / yang-parser-antlr / src / main / antlr4 / org / opendaylight / yangtools / yang / parser / antlr / YangStatementParser.g4
1 //
2 // Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3 //
4 // This program and the accompanying materials are made available under the
5 // terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 // and is available at http://www.eclipse.org/legal/epl-v10.html
7 //
8 parser grammar YangStatementParser;
9
10 options {
11     tokenVocab = YangStatementLexer;
12 }
13
14 // NOTE: we need to use SEP*/SEP+ because comments end up breaking whitespace
15 //       sequences into two.
16 file : SEP* statement SEP* EOF;
17 statement : keyword (SEP+ argument)? SEP* (SEMICOLON | LEFT_BRACE SEP* (statement SEP*)* RIGHT_BRACE);
18 keyword : IDENTIFIER (COLON IDENTIFIER)?;
19
20 argument : STRING (SEP* PLUS SEP* STRING)* | IDENTIFIER;