public interface ISymbolScope
|
EndOffset | Read-only Gets the end offset of the current lexical scope. |
Method | Read-only Gets the method that contains the current lexical scope. |
Parent | Read-only Gets the parent lexical scope of the current scope. |
StartOffset | Read-only Gets the start offset of the current lexical scope. |
GetChildren | Gets the child lexical scopes of the current lexical scope. |
GetLocals | Gets the local variables within the current lexical scope. |
GetNamespaces | Gets the namespaces that are used within the current scope. |
int EndOffset {get;}
|
ISymbolMethod Method {get;}
|
ISymbolScope Parent {get;}
|
int StartOffset {get;}
|
ISymbolScope[] GetChildren(); |
ISymbolVariable[] GetLocals(); |
ISymbolNamespace[] GetNamespaces(); |