Skip to content

Instantly share code, notes, and snippets.

@jroesch
Created December 29, 2015 05:12
Show Gist options
  • Save jroesch/42fdb4ef88792c268c09 to your computer and use it in GitHub Desktop.
Save jroesch/42fdb4ef88792c268c09 to your computer and use it in GitHub Desktop.
pub struct Span {
pub lo: usize,
pub hi: usize,
}
trait HasSpan {
fn span_ref(&self) -> &Span;
}
enum Exp {
Add(Span, Box<Exp>, Box<Exp>)
Var(Span, String)
Num(Span, i32)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment