commit | 2990380b7c27fa401532e072ed9dbb1cdef1c1a3 | [log] [tgz] |
---|---|---|
author | Natalie Weizenbaum <nweiz@google.com> | Tue Jan 14 19:48:42 2020 -0800 |
committer | GitHub <noreply@github.com> | Tue Jan 14 19:48:42 2020 -0800 |
tree | 6b412139013b0dedc61caf351b5a1f8e3237df16 | |
parent | 709dcb082ecfa5db25987b14c62957fff5f2e656 [diff] |
Add support for highlighting multiple spans at once (#49) This makes it possible for applications to provide additional context in their span-based messages. Like the existing highlight format, it's heavily inspired by [Rust's error messages][]. [Rust's error messages]: https://blog.rust-lang.org/images/2016-08-09-Errors/new_errors.png For maximal backwards-compatibility, this doesn't change the formatting of any single-span highlights and it uses extension methods rather than adding new methods to existing classes.
source_span
is a library for tracking locations in source code. It's designed to provide a standard representation for source code locations and spans so that disparate packages can easily pass them among one another, and to make it easy to generate human-friendly messages associated with a given piece of code.
The most commonly-used class is the package's namesake, SourceSpan
. It represents a span of characters in some source file, and is often attached to an object that has been parsed to indicate where it was parsed from. It provides access to the text of the span via SourceSpan.text
and can be used to produce human-friendly messages using SourceSpan.message()
.
When parsing code from a file, SourceFile
is useful. Not only does it provide an efficient means of computing line and column numbers, SourceFile.span()
returns special FileSpan
s that are able to provide more context for their error messages.