blob: e3458c8b25cf956f21dcdce704ff4aedf46e96fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* MRustC - Rust Compiler
* - By John Hodge (Mutabah/thePowersGang)
*
* span.cpp
* - Spans and error handling
*/
#include <functional>
#include <iostream>
#include <span.hpp>
void Span::bug(::std::function<void(::std::ostream&)> msg) const
{
::std::cerr << this->filename << ":" << this->start_line << ": BUG:";
msg(::std::cerr);
::std::cerr << ::std::endl;
abort();
}
void Span::error(ErrorType tag, ::std::function<void(::std::ostream&)> msg) const {
::std::cerr << this->filename << ":" << this->start_line << ": error:";
msg(::std::cerr);
::std::cerr << ::std::endl;
abort();
}
void Span::warning(WarningType tag, ::std::function<void(::std::ostream&)> msg) const {
::std::cerr << this->filename << ":" << this->start_line << ": warning:";
msg(::std::cerr);
::std::cerr << ::std::endl;
//abort();
}
void Span::note(::std::function<void(::std::ostream&)> msg) const {
::std::cerr << this->filename << ":" << this->start_line << ": note:";
msg(::std::cerr);
::std::cerr << ::std::endl;
//abort();
}
|