PropBag
flowchart LR
Start[Start]
Stop[Stop]
Begin(( ))
End(( ))
Colon([<tt>:</tt> / <tt>=</tt>])
Start --> Open([<tt>#123;</tt>]) --> Begin
Begin --> Ident([<a href="Identifier">Identifier</a>]) --> Colon
Begin --> Str([<a href="String">String</a>]) --> Colon
Begin --> Keyword{{any keyword}} --> Colon
Begin --> Func([<a href="FuncDecl">FuncDecl</a>]) ----> End
Begin --> Proc([<a href="ProcDecl">ProcDecl</a>]) ----> End
Colon --> Expr([<a href="Expression">Expression</a>]) --> End
End --> Close([<tt>#125;</tt>])
End --> Comma([<tt>,</tt> / <tt>;</tt>])
Comma --> Close
Comma --> Begin
Close --> Stop
style Start fill:#44E
style Stop fill:#E44
⏱ Last Modified: 2/15 10:06:11 am