コード例 #1
0
        public static string GetGreaterEqualsOperand(GreaterEquals expression, VHDLCompilerInterface compiler)
        {
            string left  = GetOperand(expression.Left, compiler);
            string right = GetOperand(expression.Right, compiler);
            FunctionCallTemplate template = new FunctionCallTemplate(left, "GreaterEquals", right);

            return(template.TransformText());
        }
コード例 #2
0
 public static string GetGreaterEqualsExpresstionType(GreaterEquals expression, VHDLCompilerInterface compiler)
 {
     return("bool");
 }
コード例 #3
0
 public AbstractValue Evaluate(GreaterEquals expr)
 {
     throw new NotImplementedException();
 }