Remove debug output
This commit is contained in:
parent
08246f1474
commit
37921c4466
|
@ -1,9 +1,7 @@
|
|||
#include "ast.hpp"
|
||||
#include <ostream>
|
||||
#include <iostream>
|
||||
#include "binop.hpp"
|
||||
#include "error.hpp"
|
||||
#include "type.hpp"
|
||||
#include "type_env.hpp"
|
||||
|
||||
static void print_indent(int n, std::ostream& to) {
|
||||
|
@ -164,10 +162,6 @@ type_ptr ast_case::typecheck(type_mgr& mgr) {
|
|||
|
||||
input_type = mgr.resolve(case_type, var);
|
||||
if(!dynamic_cast<type_data*>(input_type.get())) {
|
||||
std::cout << dynamic_cast<type_data*>(input_type.get()) << std::endl;
|
||||
std::cout << dynamic_cast<type_base*>(input_type.get()) << std::endl;
|
||||
std::cout << var << std::endl;
|
||||
input_type->print(mgr, std::cout); std::cout << std::endl;
|
||||
throw type_error("attempting case analysis of non-data type");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user