Ignore:
Timestamp:
Mar 24, 2007, 9:08:34 PM (18 years ago)
Author:
cinc
Message:

Rewrote symbol handling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/idl-compiler/include/parser.h

    r264 r265  
    108108}SYMBOLINFO,*PSYMBOLINFO;
    109109
     110typedef struct
     111{
     112  GTree*    pSymbolTree;         /* Our introduced symbols */
     113  guint     uiLineCorrection;    /* This is the line number put by the preprocessor into
     114                                    the source file. It's used to calculate proper line numbers
     115                                    for errors. */
     116  char*     chrCurrentSourceFile;/* The preprocessor includes files for us. This is the info
     117                                    about their name. */
     118
     119}PARSEINFO, *PPARSEINFO;
     120
    110121/* Symbols defined for our IDL language.
    111122   Keep these enums in sync with the order of the idlSymbols struct! */
Note: See TracChangeset for help on using the changeset viewer.