Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ISymbolMethod.cs « System.Diagnostics.SymbolStore « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 768ace157100b29f3f79dd965a99a8be5d32ee35 (plain)
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
//
// System.Diagnostics.SymbolStore.ISymbolMethod
//
// Author:
//   Duco Fijma (duco@lorentz.xs4all.nl)
//
//   (c) 2002 Duco Fijma
// 

namespace System.Diagnostics.SymbolStore
{

public interface ISymbolMethod {

	ISymbolScope RootScope {get; }
	int SequencePointCount {get; }
	SymbolToken Token {get; }

	ISymbolNamespace GetNamespace ();
	int GetOffset (ISymbolDocument document, int line, int column);
	ISymbolVariable[] GetParameters ();
	int[] GetRanges (ISymbolDocument document, int line, int column);
	ISymbolScope GetScope (int offset);
	void GetSequencePoints (
		int[] offsets,
		ISymbolDocument[] documents,
		int[] lines,
		int[] columns,
		int[] endLines,
		int[] endColumns);
	bool GetSourceStartEnd (
		ISymbolDocument[] docs,
		int[] lines,
		int[] columns); 

}

}