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;
        }