QUT.Gplex.Parser.LexCategory.ParseRE C# (CSharp) Method

ParseRE() private method

private ParseRE ( AAST aast ) : void
aast AAST
return void
        internal void ParseRE(AAST aast)
        {
            regX = new AAST.ReParser(verb, vrbSpan, aast).Parse();
        }

Usage Example

Exemplo n.º 1
0
 internal bool AddLexCategory( string name, string verb, LexSpan spn ) {
     if (lexCategories.ContainsKey( name ))
         return false;
     else {
         LexCategory cls = new LexCategory( name, verb, spn );
         lexCategories.Add( name, cls );
         cls.ParseRE( this );
         return true;
     }
 }