* MonoTouch/MonoPInvokeCallbackAttribute.cs: Added.
[mono.git] / mcs / class / System / System.Text.RegularExpressions / compiler.cs
index 9173edcd5a42c04f3be4fc77e1da1894f927154e..dab38d8c1a099c6145021ac4191f9d8b729ae526 100644 (file)
@@ -97,13 +97,25 @@ namespace System.Text.RegularExpressions {
                        get { return pattern[1]; }
                }
 
+               public int Gap {
+                       get { return gap; }
+                       set { gap = value; }
+               }
+
                public IDictionary Mapping {
                        get { return mapping; }
                        set { mapping = value; }
                }
 
+               public string [] NamesMapping {
+                       get { return namesMapping; }
+                       set { namesMapping = value; }
+               }
+
                private IDictionary mapping;
                private ushort[] pattern;
+               private string [] namesMapping;
+               private int gap;
        }
 
        class PatternCompiler : ICompiler {