Declaration or Statement
flowchart LR
Start[Start]
Stop[Stop]
Start --> Var([<a href="VarDecl">Var Declaration</a>]) -------> Stop
Start --> Const([<a href="ConstDecl"> Const Declaration</a>]) -------> Stop
Start --> Type([<a href="TypeDef">Type Definition</a>]) -------> Stop
Start --> Include([<tt>#123;$Include</tt>])
Include --> iIdent{{file name}}
iIdent ---> iClose([<tt>#125;</tt>])
Include --> iBeginQuote([<tt>#quot;</tt>])
iBeginQuote --> iString{{file name}}
iString --> iEndQuote([<tt>#quot;</tt>])
iEndQuote --> iClose
iClose ---> Stop
Start --->| #40;1#41; | Hide([<tt>#123;$Hide</tt>])
Hide --> hIdent([<a href="Identifier">Identifier</a>])
hIdent --> hClose([<tt>#125;</tt>])
hClose -----> Stop
Start --->| #40;2#41; | From([<a href="FromStmt">From Statement</a>]) -------> Stop
Start --> Stmt([<a href="Statement">Statement</a>]) -------> Stop
style Start fill:#44E
style Stop fill:#E44
⏱ Last Modified: 2/15 10:06:11 am