Esempio n. 1
0
 public bool Emit(CxByteCode code, int length = 1)
 {
     if (m_length + length > LengthLimit)
     {
         return(false);
     }
     m_length += length;
     m_code.Add((uint)code);
     return(true);
 }
Esempio n. 2
0
 public bool Emit(CxByteCode code, int length = 1)
 {
     if (m_length + length > LengthLimit)
         return false;
     m_length += length;
     m_code.Add ((uint)code);
     return true;
 }