commit | 57c34f46835fd19a0b50937a145fca5cb89c70f1 | [log] [tgz] |
---|---|---|
author | Nate Bosch <nbosch@google.com> | Fri Nov 22 15:57:23 2019 -0800 |
committer | GitHub <noreply@github.com> | Fri Nov 22 15:57:23 2019 -0800 |
tree | 03c4ebb7113eb934a75fd8bcd7eb7345a72e9008 | |
parent | 80a08f6381f5f9a609f78a6ba80736311b720eda [diff] |
Fix remaining prefer_single_quotes and fail travis on lints (#48) Missed saving some files in my editor in https://github.com/dart-lang/source_span/pull/47 The travis config was not set to fail for lints.
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.