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

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