Split out RFC7950 ANTLR grammars
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / antlr4 / org / opendaylight / yangtools / antlrv4 / code / gen / YangStatementParser.g4
diff --git a/yang/yang-parser-rfc7950/src/main/antlr4/org/opendaylight/yangtools/antlrv4/code/gen/YangStatementParser.g4 b/yang/yang-parser-rfc7950/src/main/antlr4/org/opendaylight/yangtools/antlrv4/code/gen/YangStatementParser.g4
deleted file mode 100644 (file)
index 9f836e2..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-// Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
-//
-// This program and the accompanying materials are made available under the
-// terms of the Eclipse Public License v1.0 which accompanies this distribution,
-// and is available at http://www.eclipse.org/legal/epl-v10.html
-//
-parser grammar YangStatementParser;
-
-options {
-    tokenVocab = YangStatementLexer;
-}
-
-statement : SEP* keyword SEP* (argument)? SEP* (SEMICOLON | LEFT_BRACE SEP* (statement)* SEP* RIGHT_BRACE SEP*) SEP*;
-keyword : (IDENTIFIER COLON)? IDENTIFIER;
-
-argument : STRING (SEP* PLUS SEP* STRING)* | IDENTIFIER;