Update yang-xpath-antlr a bit
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / antlr4 / org / opendaylight / yangtools / antlrv4 / code / gen / 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 statement : SEP* keyword SEP* (argument)? SEP* (SEMICOLON | LEFT_BRACE SEP* (statement)* SEP* RIGHT_BRACE SEP*) SEP*;
15 keyword : (IDENTIFIER COLON)? IDENTIFIER;
16
17 argument : STRING (SEP* PLUS SEP* STRING)* | IDENTIFIER;