Пример #1
0
 public CallStackFrameVM(ICallStackFrameContext context, int index, CorFrame frame, DnProcess process)
 {
     this.context = context;
     this.index   = index;
     this.frame   = frame;
     this.process = process;
 }
Пример #2
0
 public MessageCallStackFrameVM(ICallStackFrameContext context, int index, string name)
 {
     this.context      = context;
     this.index        = index;
     this.cachedOutput = CachedOutput.Create(name, TypeColor.Error);
 }
Пример #3
0
		public MessageCallStackFrameVM(ICallStackFrameContext context, int index, string name) {
			this.context = context;
			this.index = index;
			this.cachedOutput = CachedOutput.Create(name, TypeColor.Error);
		}
Пример #4
0
		public CallStackFrameVM(ICallStackFrameContext context, int index, CorFrame frame, DnProcess process) {
			this.context = context;
			this.index = index;
			this.frame = frame;
			this.process = process;
		}
Пример #5
0
 public CallStackFrameVM(ICallStackFrameContext context, int index, CorFrame frame)
 {
     this.context = context;
     this.index   = index;
     this.frame   = frame;
 }
Пример #6
0
		public CallStackFrameVM(ICallStackFrameContext context, int index, CorFrame frame) {
			this.context = context;
			this.index = index;
			this.frame = frame;
		}