Skip to content
This repository has been archived by the owner on Nov 18, 2020. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 430 Bytes

expressions.md

File metadata and controls

16 lines (12 loc) · 430 Bytes

Expressions

Expressions can be expression blocks which are blocks or result expressions, however a number of places in the grammar do not allow expression blocks. For that purpose, an embedded expression is any expression that is not an expression block.

expression
    : expression_block
    | embedded_expression
    ;

embedded_expression
    : choice_expression
    | loop_expression
    ;