stage3/print_datatypes_error.cc
changeset 484 f78750994a82
parent 483 7f839fb100c1
child 485 835697564c6d
equal deleted inserted replaced
483:7f839fb100c1 484:f78750994a82
   910 void *print_datatypes_error_c::visit( SUB_operator_c *symbol) {return print_binary_operator_errors("SUB" , symbol, symbol->deprecated_operation);}
   910 void *print_datatypes_error_c::visit( SUB_operator_c *symbol) {return print_binary_operator_errors("SUB" , symbol, symbol->deprecated_operation);}
   911 void *print_datatypes_error_c::visit( MUL_operator_c *symbol) {return print_binary_operator_errors("MUL" , symbol, symbol->deprecated_operation);}
   911 void *print_datatypes_error_c::visit( MUL_operator_c *symbol) {return print_binary_operator_errors("MUL" , symbol, symbol->deprecated_operation);}
   912 void *print_datatypes_error_c::visit( DIV_operator_c *symbol) {return print_binary_operator_errors("DIV" , symbol, symbol->deprecated_operation);}
   912 void *print_datatypes_error_c::visit( DIV_operator_c *symbol) {return print_binary_operator_errors("DIV" , symbol, symbol->deprecated_operation);}
   913 void *print_datatypes_error_c::visit( MOD_operator_c *symbol) {return print_binary_operator_errors("MOD" , symbol);}
   913 void *print_datatypes_error_c::visit( MOD_operator_c *symbol) {return print_binary_operator_errors("MOD" , symbol);}
   914 
   914 
   915 void *print_datatypes_error_c::visit(GT_operator_c *symbol) {
   915 void *print_datatypes_error_c::visit(  GT_operator_c *symbol) {return print_binary_operator_errors( "GT" , symbol);}
   916 	return NULL;
   916 void *print_datatypes_error_c::visit(  GE_operator_c *symbol) {return print_binary_operator_errors( "GE" , symbol);}
   917 }
   917 void *print_datatypes_error_c::visit(  EQ_operator_c *symbol) {return print_binary_operator_errors( "EQ" , symbol);}
   918 
   918 void *print_datatypes_error_c::visit(  LT_operator_c *symbol) {return print_binary_operator_errors( "LT" , symbol);}
   919 void *print_datatypes_error_c::visit(GE_operator_c *symbol) {
   919 void *print_datatypes_error_c::visit(  LE_operator_c *symbol) {return print_binary_operator_errors( "LE" , symbol);}
   920 	return NULL;
   920 void *print_datatypes_error_c::visit(  NE_operator_c *symbol) {return print_binary_operator_errors( "NE" , symbol);}
   921 }
   921 
   922 
   922   
   923 void *print_datatypes_error_c::visit(EQ_operator_c *symbol) {
       
   924 	return NULL;
       
   925 }
       
   926 
       
   927 void *print_datatypes_error_c::visit(LT_operator_c *symbol) {
       
   928 	return NULL;
       
   929 }
       
   930 
       
   931 void *print_datatypes_error_c::visit(LE_operator_c *symbol) {
       
   932 	return NULL;
       
   933 }
       
   934 
       
   935 void *print_datatypes_error_c::visit(NE_operator_c *symbol) {
       
   936 	return NULL;
       
   937 }
       
   938 
       
   939 void *print_datatypes_error_c::visit(CAL_operator_c *symbol) {
   923 void *print_datatypes_error_c::visit(CAL_operator_c *symbol) {
   940 	return NULL;
   924 	return NULL;
   941 }
   925 }
   942 
   926 
   943 
   927