commit | cb457d54dd93ea333d5854638cff759baf63046c | [log] [tgz] |
---|---|---|
author | Natalie Weizenbaum <nweiz@google.com> | Thu Jan 17 16:44:06 2019 -0500 |
committer | Natalie Weizenbaum <nweiz@google.com> | Thu Jan 17 16:44:06 2019 -0500 |
tree | 95e91132f7c068dffead2a8469a718547f6c4b3d | |
parent | 47214cd7a260bf04a32064abe525a476c9432226 [diff] |
Make FileSpan.context include the full line for all point spans Previously, if a point span appeared at the beginning of a line or at the end of the last line of the file, FileSpan.context returned an empty string.
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.