Beispiel #1
0
    public static string  stringFromArithCommandKind(TypeArithCommandKind the_enum)
    {
        switch (the_enum)
        {
        case TypeArithCommandKind.ArithCommandKind_ArithCommand:
            return("ArithCommand");

        default:
            Debug.Assert(false);
            return(null);
        }
    }
Beispiel #2
0
 public void setArithCommandKind(TypeArithCommandKind new_value)
 {
     setArithCommandKind();
 }
Beispiel #3
0
            protected override void handle_result(TypeArithCommandKind result)
            {
//@@@        Debug.Assert(!have_value);
                have_value = true;
                value      = result;
            }
Beispiel #4
0
 protected override void handle_result(TypeArithCommandKind result)
 {
     top.value.Add(result);
 }
Beispiel #5
0
 protected abstract void handle_result(TypeArithCommandKind result);