Clone this repo:
  1. 48d0f57 Bump actions/checkout from 3.5.3 to 3.6.0 (#101) by dependabot[bot] · 4 weeks ago master
  2. 37735ae Bump actions/checkout from 3.5.2 to 3.5.3 (#99) by dependabot[bot] · 3 months ago
  3. 4dc78fb blast_repo fixes (#98) by Devon Carew · 4 months ago
  4. 69fa991 Bump actions/checkout from 3.5.0 to 3.5.2 (#97) by dependabot[bot] · 5 months ago
  5. 905a167 Add public access to a SourceFile's code units (#93) by Natalie Weizenbaum · 6 months ago v1.10.0

Dart CI pub package package publisher

About this package

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 FileSpans that are able to provide more context for their error messages.