Changeset 6863
- Timestamp:
- 12/01/15 16:43:21 (9 years ago)
- Location:
- FCS-QL/trunk/src
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FCS-QL/trunk/src/main/antlr4/eu/clarin/sru/fcs/qlparser/FCSLexer.g4
r6815 r6863 6 6 * 20150501- /ljo 7 7 */ 8 9 SIMPLE_WITHIN_SCOPE10 : 'sentence'11 | 's'12 | 'utterance'13 | 'u'14 | 'paragraph'15 | 'p'16 | 'turn'17 | 't'18 | 'text'19 | 'session'20 ;21 22 WITHIN: 'within';23 8 24 9 LPAREN: '('; … … 49 34 ; 50 35 51 REGEXP_FLAG52 : 'i' /* case-insensitive; Poliqarp/Perl compat */53 | 'I' /* case-sensitive; Poliqarp compat */54 | 'c' /* case-insensitive, CQP compat */55 | 'C' /* case-sensitive */56 | 'l' /* literal matching, CQP compat*/57 | 'd' /* diacritic agnostic matching, CQP compat */58 ;59 60 36 SIMPLE_ATTRIBUTE 61 37 : IDENTIFIER … … 79 55 INTEGER 80 56 : [0-9+] 57 ; 58 59 WITHIN: 'within'; 60 61 SIMPLE_WITHIN_SCOPE 62 : 'sentence' 63 | 's' 64 | 'utterance' 65 | 'u' 66 | 'paragraph' 67 | 'p' 68 | 'turn' 69 | 't' 70 | 'text' 71 | 'session' 72 ; 73 74 REGEXP_FLAG 75 : 'i' /* case-insensitive; Poliqarp/Perl compat */ 76 | 'I' /* case-sensitive; Poliqarp compat */ 77 | 'c' /* case-insensitive, CQP compat */ 78 | 'C' /* case-sensitive */ 79 | 'l' /* literal matching, CQP compat*/ 80 | 'd' /* diacritic agnostic matching, CQP compat */ 81 81 ; 82 82
Note: See TracChangeset
for help on using the changeset viewer.