Example #1
0
 public AssemblerBlock(StatementList asmInstrs)
     : base(asmInstrs)
 {
 }
Example #2
0
 public BlockStatement(StatementList stmts)
 {
     this.stmts = stmts;
 }
Example #3
0
        public BlockStatement @default;         // else or default, same semantics

        public ExceptionBlock(StatementList onList, BlockStatement @default = null)
        {
            this.onList   = onList;
            this.@default = @default;
        }
Example #4
0
 public CaseStatement(Expression condition, StatementList selectors, Statement caseelse)
 {
     this.condition = condition;
     this.selectors = selectors;
     this.caseelse  = caseelse;
 }