コード例 #1
0
ファイル: DebugFileBuilder.cs プロジェクト: taradinoc/zilf
 public void MarkObject(IObjectBuilder obj, DebugLineRef start, DebugLineRef end)
 {
     storedLines.Add(string.Format(
                         ".DEBUG-OBJECT {0},\"{0}\",{1},{2},{3},{4},{5},{6}",
                         obj,
                         GetFileNumber(start.File),
                         start.Line,
                         start.Column,
                         GetFileNumber(end.File),
                         end.Line,
                         end.Column));
 }
コード例 #2
0
ファイル: DebugFileBuilder.cs プロジェクト: taradinoc/zilf
 public void MarkSequencePoint(IRoutineBuilder routine, DebugLineRef point)
 {
     ((RoutineBuilder)routine).MarkSequencePoint(point);
 }
コード例 #3
0
ファイル: DebugFileBuilder.cs プロジェクト: taradinoc/zilf
 public void MarkRoutine(IRoutineBuilder routine, DebugLineRef start, DebugLineRef end)
 {
     ((RoutineBuilder)routine).defnStart = start;
     ((RoutineBuilder)routine).defnEnd   = end;
 }