Skip to content

Instantly share code, notes, and snippets.

@nitin42
Created March 9, 2018 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nitin42/4a7bd50fb7f1220a52b533ed532fa5d6 to your computer and use it in GitHub Desktop.
Save nitin42/4a7bd50fb7f1220a52b533ed532fa5d6 to your computer and use it in GitHub Desktop.
expression => binary | unary | grouping | literal
literal => "true" | "false" | number | string | "null"
grouping => "(" expression ")"
binary => expression operator expression
unary => ( "-" | "!" ) expression
operator => "===" | "!==" | "<" | "<=" | ">" | ">=" | "+" | "-" | "*" | "/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment