Beispiel #1
0
 public void Write(MethodDebugInformation info)
 {
     writer.Write(info);
 }
Beispiel #2
0
        public void Write(MethodDebugInformation info)
        {
            CheckMethodDebugInformationTable();

            pdb_metadata.AddMethodDebugInformation(info);
        }
Beispiel #3
0
 void ReadCustomDebugInformations(MethodDebugInformation info)
 {
     info.method.custom_infos = debug_reader.GetCustomDebugInformation(info.method);
 }
Beispiel #4
0
 void ReadStateMachineKickOffMethod(MethodDebugInformation method_info)
 {
     method_info.kickoff_method = debug_reader.ReadStateMachineKickoffMethod(method_info.method);
 }
Beispiel #5
0
 void ReadScope(MethodDebugInformation method_info)
 {
     method_info.scope = debug_reader.ReadScope(method_info.method);
 }
Beispiel #6
0
 void ReadSequencePoints(MethodDebugInformation method_info)
 {
     method_info.sequence_points = debug_reader.ReadSequencePoints(method_info.method);
 }