Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

support at method using for locate error #332

Open
@s97712

Description

@s97712

Backtrace is too verbose and inefficient, we should provide another way to locate errors.
By adding at method to Fail, We can write the code such as:

use position::{here, Position};
use failure::Fail;

#[derive(Fail, Debug)]
pub enum Bar {
  // `Position` using for record error location
  #[fail(display="foo")]
  Foo(Position)
}


fn cause_error() -> Bar {
  Bar::Foo(here!())
}

fn main() {
  let err = cause_error();
  
  let mut fail: &Fail = &err;

  while let Some(cause) = fail.cause() {
    let position = cause.at().map_or("...".to_owned(), |pos| pos.to_string());
    println!("\t{} at {}",cause, position);
    fail = cause;
  }

}

It will print the error location.

Related library

Position

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions