/* ____ ____ ____ ____ ______ *\ ** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala ** ** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL ** ** /_____/\____/\___/\____/____/ ** \* */ // $Id: EntryTags.java package scalac.symtab; public interface EntryTags { /*************************************************** * Symbol table attribute format: * Symtab = nentries_Nat {Entry} * Entry = 1 TERMNAME len_Nat NameInfo * | 2 TYPENAME len_Nat NameInfo * | 3 NUMBER lenNat NumInfo * | 4 NONEsym len_Nat * | 5 TYPEsym len_Nat SymbolInfo lobound_Ref * | 6 ALIASsym len_Nat SymbolInfo constrsym_Ref * | 7 CLASSsym len_Nat SymbolInfo [modulesym_Ref] * thistype_Ref constrsym_Ref * | 8 VALsym len_Nat SymbolInfo [classsym_Ref] * | 9 EXTref len_Nat name_Ref [owner_Ref] * | 10 EXTMODCLASSref len_Nat name_Ref [owner_Ref] * | 11 NOtpe len_Nat * | 12 THIStpe len_Nat sym_Ref * | 13 SINGLEtpe len_Nat type_Ref sym_Ref * | 14 CONSTANTtpe len_Nat type_Ref constant_Ref * | 15 TYPEREFtpe len_Nat type_Ref sym_Ref {targ_Ref} * | 16 COMPOUNDtpe len_Nat * iscompoundsym_Byte [owner_Ref] classsym_Ref {tpe_Ref} * | 17 METHODtpe len_Nat tpe_Ref {tpe_Ref} * | 18 POLYTtpe len_Nat tpe_Ref {sym_Ref} * | 19 OVERLOADEDtpe len_Nat {sym_Ref} {tpe_Ref} * | 22 FLAGGEDtpe len_Nat flags_Nat tpe_Ref * | 24 LITERALunit len_Nat * | 25 LITERALboolean len_Nat value_Byte * | 26 LITERALbyte len_Nat value_Long * | 27 LITERALshort len_Nat value_Long * | 28 LITERALchar len_Nat value_Long * | 29 LITERALint len_Nat value_Long * | 30 LITERALlong len_Nat value_Long * | 31 LITERALfloat len_Nat value_Long * | 32 LITERALdouble len_Nat value_Long * | 33 LITERALstring len_Nat name_Ref * | 34 LITERALnull len_Nat * | 35 LITERALzero len_Nat * SymbolInfo = name_Ref owner_Ref flags_Nat info_Ref * NameInfo = * NumInfo = * Ref = Nat * * len is remaining length after `len'. */ int TERMname = 1, TYPEname = 2, NONEsym = 4, TYPEsym = 5, ALIASsym = 6, CLASSsym = 7, VALsym = 8, EXTref = 9, EXTMODCLASSref = 10, NOtpe = 11, THIStpe = 12, SINGLEtpe = 13, CONSTANTtpe = 14, TYPEREFtpe = 15, COMPOUNDtpe = 16, METHODtpe = 17, POLYtpe = 18, OVERLOADEDtpe = 19, UNBOXEDtpe = 20, UNBOXEDARRAYtpe = 21, FLAGGEDtpe = 22, ERRORtpe = 23, LITERALunit = 24, LITERALboolean = 25, LITERALbyte = 26, LITERALshort = 27, LITERALchar = 28, LITERALint = 29, LITERALlong = 30, LITERALfloat = 31, LITERALdouble = 32, LITERALstring = 33, LITERALnull = 34, LITERALzero = 35, NOpre = 36; int firstSymTag = NONEsym, lastSymTag = VALsym; int firstTypeTag = NOtpe, lastTypeTag = FLAGGEDtpe; // flag encodings int REPEATEDflag = 4, DEFflag = 8; }