4.3.2. Sequential Rule

[Tip]Description

The sequential ruleis a rule-container that defines the sequential execution of multiple rules.

[Important]Syntax
SequentialRuleAST ::= seq { AsmRulesAST } OptSemicolonAST  

A sequential rule contains an arbitrary number of nested ASM rules.

[Note]Semantics

The sequential rule executes all rules listed inside in the defined order.

The sequential rule fails when one of the contained rules fails. The rules after the failing rule are not executed. The previous state of local variables are not restored after failure.

Defined In:  compound rule

See Also:  parallel rule, random rule