Skip to content

Instantly share code, notes, and snippets.

@hmarcelodn
Last active May 24, 2022 21:13
Show Gist options
  • Select an option

  • Save hmarcelodn/3f1074b0855b14b0d9534d8dab4a2051 to your computer and use it in GitHub Desktop.

Select an option

Save hmarcelodn/3f1074b0855b14b0d9534d8dab4a2051 to your computer and use it in GitHub Desktop.
thl-grammar.pegjs-06
ConditionalBooleanStatement
=
"[" _ "if condition" _ "=" _ "'"
conditional: OrCondition
"'" _ "]"
body1: Code _
"[else]"* _
body2: Code _
"[/if]" {
return {
conditionalStatement: {conditional, body1, body2}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment