コード例 #1
0
 public AlwaysLoop(LFunction function, int begin, int end)
     : base(function, begin, end)
     => this.m_statements = new List <Statement>();
コード例 #2
0
 public Break(LFunction function, int line, int target)
     : base(function, line, line)
     => this.Target = target;
コード例 #3
0
ファイル: Block.cs プロジェクト: WhiteBlackGoose/Sdk
 protected Block(LFunction function, int begin, int end)
 {
     this.Function = function;
     this.Begin    = begin;
     this.End      = end;
 }
コード例 #4
0
ファイル: ElseEndBlock.cs プロジェクト: WhiteBlackGoose/Sdk
 public ElseEndBlock(LFunction function, int begin, int end)
     : base(function, begin, end)
     => this.m_statements = new List <Statement>(end - begin + 1);
コード例 #5
0
ファイル: OuterBlock.cs プロジェクト: WhiteBlackGoose/Sdk
 public OuterBlock(LFunction function, int length)
     : base(function, 0, length + 1)
     => this.m_statements = new List <Statement>(length);