rustc-ap-rustc_span 704.0.0

Automatically published version of the package `rustc_span` in the rust-lang/rust repository from commit 37d067f5d71331d909102d142ecc50f577e07ae4 The publishing script for this crate lives at: https://github.com/alexcrichton/rustc-auto-publish
docs.rs failed to build rustc-ap-rustc_span-704.0.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: rustc-ap-rustc_span-727.0.0

Source positions and related helper functions.

Important concepts in this module include:

  • the span, represented by [SpanData] and related types;
  • source code as represented by a [SourceMap]; and
  • interned strings, represented by [Symbol]s, with some common symbols available statically in the [sym] module.

Unlike most compilers, the span contains not only the position in the source code, but also various other metadata, such as the edition and macro hygiene. This metadata is stored in [SyntaxContext] and [ExpnData].

Note

This API is completely unstable and subject to change.