Exemplo n.º 1
0
 public RPRegexElement(Regex regex, RPScanTypes scanType)
 {
     Regex    = regex;
     ScanType = scanType;
 }
 public RPSyntaxKindElement(SyntaxKind syntaxKind, RPScanTypes scanType)
 {
     SyntaxKind = syntaxKind;
     ScanType   = scanType;
 }
Exemplo n.º 3
0
 public RPWildcardElement(RPScanTypes scanType)
 {
     ScanType = scanType;
 }
 public RPSyntaxKindRegexPairElement(SyntaxKind syntaxKind, Regex regex, RPScanTypes scanType)
 {
     SyntaxKind = syntaxKind;
     Regex = regex;
     ScanType = scanType;
 }
Exemplo n.º 5
0
 public RPIndexElement(int index, RPScanTypes scanType)
 {
     Index    = index;
     ScanType = scanType;
 }