コード例 #1
0
ファイル: PortablePdb.cs プロジェクト: FaberSanZ/L-Sharp
 public void Write(MethodDebugInformation info)
 {
     writer.Write(info);
 }
コード例 #2
0
ファイル: PortablePdb.cs プロジェクト: FaberSanZ/L-Sharp
        public void Write(MethodDebugInformation info)
        {
            CheckMethodDebugInformationTable();

            pdb_metadata.AddMethodDebugInformation(info);
        }
コード例 #3
0
ファイル: PortablePdb.cs プロジェクト: FaberSanZ/L-Sharp
 void ReadCustomDebugInformations(MethodDebugInformation info)
 {
     info.method.custom_infos = debug_reader.GetCustomDebugInformation(info.method);
 }
コード例 #4
0
ファイル: PortablePdb.cs プロジェクト: FaberSanZ/L-Sharp
 void ReadStateMachineKickOffMethod(MethodDebugInformation method_info)
 {
     method_info.kickoff_method = debug_reader.ReadStateMachineKickoffMethod(method_info.method);
 }
コード例 #5
0
ファイル: PortablePdb.cs プロジェクト: FaberSanZ/L-Sharp
 void ReadScope(MethodDebugInformation method_info)
 {
     method_info.scope = debug_reader.ReadScope(method_info.method);
 }
コード例 #6
0
ファイル: PortablePdb.cs プロジェクト: FaberSanZ/L-Sharp
 void ReadSequencePoints(MethodDebugInformation method_info)
 {
     method_info.sequence_points = debug_reader.ReadSequencePoints(method_info.method);
 }