Module starlark::codemap[][src]

Expand description

A data structure for tracking source positions in language implementations The CodeMap tracks all source files and maps positions within them to linear indexes as if all source files were concatenated. This allows a source position to be represented by a small 32-bit Pos indexing into the CodeMap, under the assumption that the total amount of parsed source code will not exceed 4GiB. The CodeMap can look up the source file, line, and column of a Pos or Span, as well as provide source code snippets for error reporting.

Structs

A data structure recording a source code file for position lookup.

A file, and a line and column range within it.

A small, Copy, value representing a position in a CodeMap’s file.

The locations of values within a span. All are 0-based, but print out with 1-based.

A range of text within a CodeMap.

Associate a Span with a value of arbitrary type (e.g. an AST node).