#source #source-map #file #location #map #file-line

sourcefile

在连接源文件时保留映射信息,以便使错误信息更有用

7 个版本

使用旧的 Rust 2015

0.2.1 2021年7月4日
0.2.0 2021年7月4日
0.1.4 2018年9月26日
0.1.1 2018年7月27日

#1152 in 解析器实现

Download history 582/week @ 2024-03-14 908/week @ 2024-03-21 1082/week @ 2024-03-28 988/week @ 2024-04-04 918/week @ 2024-04-11 974/week @ 2024-04-18 863/week @ 2024-04-25 668/week @ 2024-05-02 590/week @ 2024-05-09 769/week @ 2024-05-16 797/week @ 2024-05-23 854/week @ 2024-05-30 748/week @ 2024-06-06 659/week @ 2024-06-13 800/week @ 2024-06-20 561/week @ 2024-06-27

2,888 每月下载次数
3 crates 中使用

Apache-2.0/MIT

11KB
169

sourcefile

一个用于连接多个文件源并跟踪每个新文件和行开始的库。

示例

假设以下文件位于 partial1.py

x = 1
y = 1

并且以下文件位于 partial2.py

x = 1
y = 1 oops

然后以下代码

extern crate sourcefile;

use sourcefile::SourceFile;

// Assume this function exists, error is offset of unexpected char.
fn parse(source: &str) -> Result<Ast, usize> {
    // ...
}

fn main() {
    let mut source = SourceFile::new();
    source = source.add_file("./partial1.py");
    source = source.add_file("./partial2.py");

    let ast = match parse(&source.content) {
        Ok(ast) => ast,
        Err(offset) => {
            let pos = source.resolve_offset(offset);
            eprintln!("error compiling in \"{}\", line {}, col {}.", 
                      pos.filename, pos.line + 1, pos.col + 1);
        }
    }
}

打印

error compiling in "./partial2.py", line 2, col 7.

没有运行时依赖