Ejemplo n.º 1
0
 internal UnFunction(ExportEntry export, string name, FlagValues flags, byte[] bytecode, int nativeIndex, int operatorPrecedence)
     : base(export, bytecode)
 {
     _name               = name;
     _flags              = flags;
     _nativeIndex        = nativeIndex;
     _operatorPrecedence = operatorPrecedence;
 }
Ejemplo n.º 2
0
 internal UnClass(ExportEntry self, int superIndex, IEntry outerInstance, byte[] bytecode, FlagValues flags,
                  IEntry defaults, string config, List <string> hideCategories, List <IEntry> interfaces)
     : base(self, superIndex, bytecode)
 {
     _outerInstance  = outerInstance;
     _flags          = flags;
     _defaults       = defaults;
     _config         = config;
     _hideCategories = hideCategories;
     _interfaces     = interfaces;
 }