C# Class Rhino.Tools.Debugger.Dim.DimIProxy

Proxy class to implement debug interfaces without bloat of class files.
Proxy class to implement debug interfaces without bloat of class files.
Inheritance: ContextAction, ContextFactory.Listener, Rhino.Debug.Debugger
Afficher le fichier Open project: hazzik/Rhino.Net Class Usage Examples

Méthodes publiques

Méthode Description
ContextCreated ( Context cx ) : void

Called when a Context is created.

Called when a Context is created.

ContextReleased ( Context cx ) : void

Called when a Context is destroyed.

Called when a Context is destroyed.

GetFrame ( Context cx, DebuggableScript fnOrScript ) : DebugFrame

Returns a StackFrame for the given function or script.

Returns a StackFrame for the given function or script.

HandleCompilationDone ( Context cx, DebuggableScript fnOrScript, string source ) : void

Called when compilation is finished.

Called when compilation is finished.

Run ( Context cx ) : object

Performs the action given by type .

Private Methods

Méthode Description
DimIProxy ( Dim dim, int type ) : System

Creates a new DimIProxy.

Creates a new DimIProxy.

WithContext ( ) : void

Performs the action given by type with the attached Rhino.ContextFactory .

Method Details

ContextCreated() public méthode

Called when a Context is created.
Called when a Context is created.
public ContextCreated ( Context cx ) : void
cx Rhino.Context
Résultat void

ContextReleased() public méthode

Called when a Context is destroyed.
Called when a Context is destroyed.
public ContextReleased ( Context cx ) : void
cx Rhino.Context
Résultat void

GetFrame() public méthode

Returns a StackFrame for the given function or script.
Returns a StackFrame for the given function or script.
public GetFrame ( Context cx, DebuggableScript fnOrScript ) : DebugFrame
cx Rhino.Context
fnOrScript DebuggableScript
Résultat DebugFrame

HandleCompilationDone() public méthode

Called when compilation is finished.
Called when compilation is finished.
public HandleCompilationDone ( Context cx, DebuggableScript fnOrScript, string source ) : void
cx Rhino.Context
fnOrScript DebuggableScript
source string
Résultat void

Run() public méthode

Performs the action given by type .
public Run ( Context cx ) : object
cx Rhino.Context
Résultat object