コード例 #1
0
ファイル: BranchLabel.cs プロジェクト: madpilot/ironruby
 internal void FixupBranch(InstructionList instructions, int branchIndex) {
     Debug.Assert(_targetIndex != UnknownIndex);
     instructions.FixupBranch(branchIndex, _targetIndex - branchIndex);
 }
コード例 #2
0
 internal void FixupBranch(InstructionList instructions, int branchIndex)
 {
     Debug.Assert(_targetIndex != UnknownIndex);
     instructions.FixupBranch(branchIndex, _targetIndex - branchIndex, _continuationStackDepth, _stackDepth);
 }
コード例 #3
0
ファイル: BranchLabel.cs プロジェクト: BenHall/ironruby
 internal void FixupBranch(InstructionList instructions, int branchIndex) {
     Debug.Assert(_targetIndex != UnknownIndex);
     instructions.FixupBranch(branchIndex, _targetIndex - branchIndex, _continuationStackDepth, _stackDepth);
 }
コード例 #4
0
 internal void FixupBranch(InstructionList instructions, int branchIndex)
 {
     Debug.Assert(_targetIndex != UnknownIndex);
     instructions.FixupBranch(branchIndex, _targetIndex - branchIndex);
 }