summaryrefslogtreecommitdiff
path: root/src/io/span.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/io/span.cpp')
-rw-r--r--src/io/span.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/io/span.cpp b/src/io/span.cpp
index f4752f0..6d116c7 100644
--- a/src/io/span.cpp
+++ b/src/io/span.cpp
@@ -31,6 +31,20 @@ namespace tmwa
{
namespace io
{
+ io::LineSpan Line::to_span() const
+ {
+ io::LineSpan rv;
+ rv.begin.text = this->text;
+ rv.begin.filename = this->filename;
+ rv.begin.line = this->line;
+ rv.begin.column = 1;
+ rv.end.text = this->text;
+ rv.end.filename = this->filename;
+ rv.end.line = this->line;
+ rv.end.column = this->text.size();
+ return rv;
+ }
+
AString Line::message_str(ZString cat, ZString msg) const
{
MString out;