コード例 #1
0
ファイル: BreakpointManager.cs プロジェクト: texbois/vsbasm
 public BreakpointManager(IDebugProgram2 program, BasmBreakpointBackend backend, SourceFile sourceFile, EngineCallbacks callbacks)
 {
     _program    = program;
     _sourceFile = sourceFile;
     _backend    = backend;
     _callbacks  = callbacks;
 }
コード例 #2
0
 public BasmRunner(SourceFile sourceFile, OnStop stopHandler)
 {
     _sourceFile    = sourceFile;
     _onStopHandler = stopHandler;
 }