add startIndex, endIndex support to format string
This commit is contained in:
parent
4194e6af0c
commit
53c9536332
|
@ -119,8 +119,10 @@ private string formatBase(string format, Message.Diagnostic diagnostic, scope co
|
||||||
s = s.replace("{filepath}", diagnostic.fileName);
|
s = s.replace("{filepath}", diagnostic.fileName);
|
||||||
s = s.replace("{line}", to!string(diagnostic.startLine));
|
s = s.replace("{line}", to!string(diagnostic.startLine));
|
||||||
s = s.replace("{column}", to!string(diagnostic.startColumn));
|
s = s.replace("{column}", to!string(diagnostic.startColumn));
|
||||||
|
s = s.replace("{startIndex}", to!string(diagnostic.startIndex));
|
||||||
s = s.replace("{endLine}", to!string(diagnostic.endLine));
|
s = s.replace("{endLine}", to!string(diagnostic.endLine));
|
||||||
s = s.replace("{endColumn}", to!string(diagnostic.endColumn));
|
s = s.replace("{endColumn}", to!string(diagnostic.endColumn));
|
||||||
|
s = s.replace("{endIndex}", to!string(diagnostic.endIndex));
|
||||||
s = s.replace("{message}", diagnostic.message);
|
s = s.replace("{message}", diagnostic.message);
|
||||||
s = s.replace("{context}", diagnostic.formatContext(cast(const(char)[]) code, color));
|
s = s.replace("{context}", diagnostic.formatContext(cast(const(char)[]) code, color));
|
||||||
return s;
|
return s;
|
||||||
|
|
|
@ -461,6 +461,8 @@ Options:
|
||||||
- {endLine}: end line number, 1-based, inclusive
|
- {endLine}: end line number, 1-based, inclusive
|
||||||
- {column}: start column on start line, 1-based, in bytes
|
- {column}: start column on start line, 1-based, in bytes
|
||||||
- {endColumn}: end column on end line, 1-based, in bytes, exclusive
|
- {endColumn}: end column on end line, 1-based, in bytes, exclusive
|
||||||
|
- {startIndex}: start file byte offset, 0-based
|
||||||
|
- {endIndex}: end file byte offset, 0-based
|
||||||
- {type}: "error" or "warn", uppercase variants: {Type}, {TYPE},
|
- {type}: "error" or "warn", uppercase variants: {Type}, {TYPE},
|
||||||
- {type2}: "error" or "warning", uppercase variants: {Type2}, {TYPE2}
|
- {type2}: "error" or "warning", uppercase variants: {Type2}, {TYPE2}
|
||||||
- {message}: human readable message such as "Variable c is never used."
|
- {message}: human readable message such as "Variable c is never used."
|
||||||
|
|
Loading…
Reference in New Issue