Remove yang-parser-antlr
[yangtools.git] / parser / yang-parser-rfc7950 / src / main / antlr4 / org / opendaylight / yangtools / yang / parser / antlr / IfFeatureExpressionLexer.g4
1 //
2 // Copyright (c) 2017 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 lexer grammar IfFeatureExpressionLexer;
9
10 NOT : 'not';
11 LP : '(';
12 RP : ')';
13 AND : 'and';
14 OR : 'or';
15 COLON : ':';
16 SEP: [ \n\r\t]+;
17 IDENTIFIER : [a-zA-Z][a-zA-Z0-9_-]*;