From cad1c0d910273969997473fedc2970805ee8d4c7 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Wed, 21 Aug 2013 15:24:06 -0400 Subject: [PATCH] location: add pstart and pend Signed-off-by: Jean Privat --- src/location.nit | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/location.nit b/src/location.nit index 3128902..26b6fa1 100644 --- a/src/location.nit +++ b/src/location.nit @@ -64,14 +64,20 @@ class Location _column_end = column_e end + # The index in the start character in the source + fun pstart: Int do return file.line_starts[line_start-1] + column_start-1 + + # The index on the end character in the source + fun pend: Int do return file.line_starts[line_end-1] + column_end-1 + # The verbatim associated text in the source-file fun text: String do var res = self.text_cache if res != null then return res var l = self - var pstart = l.file.line_starts[l.line_start-1] + l.column_start-1 - var pend = l.file.line_starts[l.line_end-1] + l.column_end-1 + var pstart = self.pstart + var pend = self.pend res = l.file.string.substring(pstart, pend-pstart+1) self.text_cache = res return res -- 1.7.9.5