IronRuby.Compiler.Ast.RegexMatchReference.RegexMatchReference C# (CSharp) Метод

RegexMatchReference() приватный Метод

private RegexMatchReference ( int index, Microsoft.Scripting.SourceSpan location ) : System.Diagnostics
index int
location Microsoft.Scripting.SourceSpan
Результат System.Diagnostics
        internal RegexMatchReference(int index, SourceSpan location) 
            : base(location) {
            Debug.Assert(index >= PostMatch, "index");
            _index = index;
        }