Skip to content

Instantly share code, notes, and snippets.

@why-jay
Created December 8, 2014 05:14
Show Gist options
  • Save why-jay/e6c1946b5d8808d81f6a to your computer and use it in GitHub Desktop.
Save why-jay/e6c1946b5d8808d81f6a to your computer and use it in GitHub Desktop.
A Mozilla Parser API snippet in Rust
pub enum Pattern<'a> {
Expression(Expression<'a>),
ObjectPattern(ObjectPattern<'a>),
ArrayPattern(ArrayPattern<'a>)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment