dotgnu-pnet
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pnet-developers] [bug #12231] Problem with resolving fully qualified st


From: Radek Polak
Subject: [Pnet-developers] [bug #12231] Problem with resolving fully qualified static metod from referenced dlls - reopen
Date: Mon, 22 Aug 2005 05:19:06 +0000
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; cs-CZ; rv:1.7.6) Gecko/20050226 Firefox/1.0.1

Follow-up Comment #3, bug #12231 (project dotgnu-pnet):

Problem seems to be in parser. If it does not stop on error, semantic
analysis would work fine. I tried this test in cs_grammar.c and all went
fine.

/*
 * Get the global scope.
 */
static ILScope *GlobalScope(void)
{
        if(CCGlobalScope)
        {
                return CCGlobalScope;
        }
        else
        {
                CCGlobalScope = ILScopeCreate(&CCCodeGen, 0);
                ILScopeDeclareNamespace(CCGlobalScope, "System");
                ILScopeUsing(CCGlobalScope, "System");
                ILScopeDeclareNamespace(CCGlobalScope, "MyNamespace");
                ILScopeUsing(CCGlobalScope, "MyNamespace");
                return CCGlobalScope;
        }
}

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=12231>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]