Ejemplo n.º 1
0
        public override bool IsCompilable()
        {
            if (!LeftOperand.IsCompilable())
            {
                return(false);
            }

            if (_children.Length > 1 && !RightOperand.IsCompilable())
            {
                return(false);
            }

            return(_exitTypeDescriptor != null);
        }
Ejemplo n.º 2
0
 public override bool IsCompilable()
 {
     return(_exitTypeDescriptor != null && LeftOperand.IsCompilable());
 }