File: IBacktrace.cs

package info (click to toggle)
mono-debugger-libs 0%2B20131201.3459502-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,584 kB
  • sloc: cs: 22,277; makefile: 9; ansic: 7
file content (20 lines) | stat: -rw-r--r-- 947 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

using Mono.Debugging.Client;

namespace Mono.Debugging.Backend
{
	public interface IBacktrace: IDebuggerBackendObject
	{
		int FrameCount { get; }
		StackFrame[] GetStackFrames (int firstIndex, int lastIndex);
		ObjectValue[] GetLocalVariables (int frameIndex, EvaluationOptions options);
		ObjectValue[] GetParameters (int frameIndex, EvaluationOptions options);
		ObjectValue GetThisReference (int frameIndex, EvaluationOptions options);
		ExceptionInfo GetException (int frameIndex, EvaluationOptions options);
		ObjectValue[] GetAllLocals (int frameIndex, EvaluationOptions options);
		ObjectValue[] GetExpressionValues (int frameIndex, string[] expressions, EvaluationOptions options);
		CompletionData GetExpressionCompletionData (int frameIndex, string exp);
		AssemblyLine[] Disassemble (int frameIndex, int firstLine, int count);
		ValidationResult ValidateExpression (int frameIndex, string expression, EvaluationOptions options);
	}
}