コード例 #1
0
ファイル: Statements.cs プロジェクト: edgar-pek/VCDryad
 private VccUnwrappingStatement(BlockStatement containingBlock, VccUnwrappingStatement template)
     : base(containingBlock, template)
 {
     this.expressions = template.expressions.Select(e => e.MakeCopyFor(containingBlock)).ToArray();
       this.body = template.body.MakeCopyFor(containingBlock);
 }
コード例 #2
0
ファイル: Statements.cs プロジェクト: tupipa/vcc
 private VccUnwrappingStatement(BlockStatement containingBlock, VccUnwrappingStatement template)
     : base(containingBlock, template)
 {
     this.expressions = template.expressions.Select(e => e.MakeCopyFor(containingBlock)).ToArray();
     this.body        = template.body.MakeCopyFor(containingBlock);
 }