コード例 #1
0
 internal void Resolve(List <Instruction> instructions, Instruction owner)
 {
     target = offset.Resolve(instructions, owner);
 }
コード例 #2
0
ファイル: TableSwitchData.cs プロジェクト: yuva2achieve/dot42
 object IResolveable.Resolve(List <Instruction> instructions, Instruction owner)
 {
     defaultIns = defaultByte.Resolve(instructions, owner);
     targets    = offsets.Select(x => x.Resolve(instructions, owner)).ToArray();
     return(this);
 }