oxc_span

Crates.iooxc_span
lib.rsoxc_span
version0.83.0
created_at2023-07-06 06:45:51.751863+00
updated_at2025-08-29 06:51:27.798286+00
descriptionA collection of JavaScript tools written in Rust.
homepagehttps://oxc.rs
repositoryhttps://github.com/oxc-project/oxc
max_upload_size
id909627
size87,771
Boshen (Boshen)

documentation

README

Oxc Span

Source position utilities and span management for precise error reporting.

Overview

This crate provides essential utilities for managing source positions and spans in JavaScript and TypeScript code. It enables precise error reporting, source mapping, and location-aware transformations across all oxc tools.

Key Features

  • Precise positions: Accurate byte-level source positions
  • Span utilities: Source ranges with start and end positions
  • Source type detection: Automatic language and module detection
  • Atom interning: Efficient string storage for identifiers
  • Content comparison: Semantic equality for AST nodes

Architecture

Span System

  • Byte positions: All positions are UTF-8 byte offsets
  • Inclusive ranges: Spans include start position, exclude end position
  • Efficiency: Uses u32 for positions, supporting files up to 4GB
  • Precision: Enables precise error highlighting and source maps

Source Type System

The source type encodes important metadata:

  • Language: JavaScript vs TypeScript
  • Module system: ESM vs Script
  • JSX support: JSX vs plain syntax
  • Variant: Standard vs definition files (.d.ts)

Atom Interning

Atoms provide memory-efficient string storage:

  • Deduplication: Identical strings share memory
  • Fast comparison: Pointer equality for identical content
  • Compact representation: Reduced memory usage for identifiers

Integration Points

  • Parser: Creates spans during tokenization and parsing
  • Semantic: Tracks spans for all symbols and references
  • Linter: Uses spans for precise error reporting
  • Codegen: Maintains spans for source map generation
  • Transformer: Preserves spans during AST manipulation

This crate provides the foundation for precise source location tracking throughout the oxc toolchain.

Commit count: 11571

cargo fmt