File: MethodSource.cs

package info (click to toggle)
mono-debugger 0.60%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 9,556 kB
  • ctags: 22,787
  • sloc: ansic: 99,407; cs: 42,429; sh: 9,192; makefile: 376
file content (60 lines) | stat: -rw-r--r-- 819 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System;
using Mono.Debugger.Languages;

namespace Mono.Debugger
{
	public abstract class MethodSource : DebuggerMarshalByRefObject
	{
		public abstract Module Module {
			get;
		}

		public abstract string Name {
			get;
		}

		public abstract bool IsManaged {
			get;
		}

		public abstract bool IsDynamic {
			get;
		}

		public abstract TargetClassType DeclaringType {
			get;
		}

		public abstract TargetFunctionType Function {
			get;
		}

		public abstract bool HasSourceFile {
			get;
		}

		public abstract SourceFile SourceFile {
			get;
		}

		public abstract bool HasSourceBuffer {
			get;
		}

		public abstract SourceBuffer SourceBuffer {
			get;
		}

		public abstract int StartRow {
			get;
		}

		public abstract int EndRow {
			get;
		}

		public abstract Method NativeMethod {
			get;
		}
	}
}