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