Giter Site home page Giter Site logo

Expand documentation about codespan HOT 4 CLOSED

brendanzab avatar brendanzab commented on May 25, 2024
Expand documentation

from codespan.

Comments (4)

brendanzab avatar brendanzab commented on May 25, 2024

Yeah, it's a bit confusing! You first need a CodeMap, and then a FileMap, and then get indices from there. I've been thinking of ways to make the simple cases easier for some time now seeing as it keeps tripping people up. 😬

Would definitely appreciate some help with the docs! You might also be interested in #52 which talks about some simplifications that we might be able to do as well. I'm also available to chat on https://gitter.im/codespan-rs/Lobby as well.

from codespan.

segeljakt avatar segeljakt commented on May 25, 2024

I get how it works now, the example could maybe be simplified to something like:

use {
    codespan::{ByteIndex, ByteSpan, CodeMap},
    codespan_reporting::{
        emit,
        termcolor::{ColorChoice, StandardStream},
        Diagnostic, Label, Severity,
    },
};

const SOURCE: &'static str = "fn main() { 1 + '3' }";

fn main() {
    let mut code_map = CodeMap::new();
    code_map.add_filemap("virtual_file".into(), SOURCE.to_string());

    let error = Diagnostic::new(Severity::Error, "Unexpected type in `+` application")
        .with_label(
            Label::new_primary(ByteSpan::new(ByteIndex(13), ByteIndex(19)))
                .with_message("Expected integer but got char"),
        )
        .with_code("E0001");

    let writer = StandardStream::stderr(ColorChoice::Auto);
    emit(&mut writer.lock(), &code_map, &error).unwrap();
    println!();
}

from codespan.

brendanzab avatar brendanzab commented on May 25, 2024

Codespan is a lot less tricky to understand now that we don't use global byte indices. If you have any other problems feel free to make some more issues!

from codespan.

segeljakt avatar segeljakt commented on May 25, 2024

Awesome thanks 😊

from codespan.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.