1 using System;
2 using System.Collections;
3
4
5
6
7
8 namespace System.Parsing
9 {
10 public class Match
11 {
12 public Match(bool hit_) :
13 hit(hit_), value(null)
14 {
15 }
16 public Match(bool hit_, void* value_) :
17 hit(hit_), value(value_)
18 {
19 }
20 public bool hit;
21 public void* value;
22 }
23 }