public override bool IsCompilable() { if (!LeftOperand.IsCompilable()) { return(false); } if (_children.Length > 1 && !RightOperand.IsCompilable()) { return(false); } return(_exitTypeDescriptor != null); }
public override bool IsCompilable() { return(_exitTypeDescriptor != null && LeftOperand.IsCompilable()); }