1
2
3 using System;
4
5 namespace System.RegularExpressions.token
6 {
7 public const long tokenSetID = 1591331602;
8
9 public const long LPAREN = (tokenSetID << 32) | 1;
10 public const long RPAREN = (tokenSetID << 32) | 2;
11 public const long LBRACKET = (tokenSetID << 32) | 3;
12 public const long RBRACKET = (tokenSetID << 32) | 4;
13 public const long ALT = (tokenSetID << 32) | 5;
14 public const long STAR = (tokenSetID << 32) | 6;
15 public const long PLUS = (tokenSetID << 32) | 7;
16 public const long QUEST = (tokenSetID << 32) | 8;
17 public const long DOT = (tokenSetID << 32) | 9;
18 public const long ESCAPE = (tokenSetID << 32) | 10;
19 public const long INVERSE = (tokenSetID << 32) | 11;
20 public const long MINUS = (tokenSetID << 32) | 12;
21 public const long CHAR = (tokenSetID << 32) | 13;
22