lalala
[mono.git] / mcs / class / corlib / System.Diagnostics.SymbolStore / ISymbolScope.cs
1 //
2 // System.Diagnostics.SymbolStore.ISymbolScope
3 //
4 // Author:
5 //   Duco Fijma (duco@lorentz.xs4all.nl)
6 //
7 //   (c) 2002 Duco Fijma
8 // 
9
10 namespace System.Diagnostics.SymbolStore
11 {
12
13 public interface ISymbolScope {
14
15         int EndOffset {get ;}
16         ISymbolMethod Method {get; }
17         ISymbolScope Parent {get ;}
18         int StartOffset {get ;}
19
20         ISymbolScope[] GetChildren ();
21         ISymbolVariable[] GetLocals ();
22         ISymbolNamespace[] GetNamespaces ();
23
24 }
25
26 }