1 // =================================
 2 // Copyright (c) 2024 Seppo Laakko
 3 // Distributed under the MIT license
 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