Changeset 270 for trunk/idl-compiler


Ignore:
Timestamp:
Mar 25, 2007, 2:43:47 PM (18 years ago)
Author:
cinc
Message:

IDL file parsing more or less working.

Location:
trunk/idl-compiler
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/idl-compiler/c/printdata.c

    r261 r270  
    144144      g_printf("\tMinor:\t\t%ld\n", pif->ulMinor);
    145145      g_printf("\tForward decl.:\t%s\n", (pif->fIsForwardDeclaration ? "Yes" : "No"));
    146      
     146      g_printf("\tMetaclass::\t%s\n", (pif->chrMetaClass ? pif->chrMetaClass : "None"));
    147147      /* Print instance vars */
    148148      g_printf("\tInstance vars:\t%d\n", pif->pInstanceVarArray->len);
  • trunk/idl-compiler/parser_c/interface_parser.c

    r269 r270  
    128128            parseInstanceVar();
    129129            break;
     130          case IDL_SYMBOL_METACLASS:
     131            parseMetaClass();
     132            break;
    130133          default:
    131134            g_scanner_unexp_token(gScanner,
Note: See TracChangeset for help on using the changeset viewer.