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

Class to store information about a stack.
Class to store information about a stack.
显示文件 Open project: hazzik/Rhino.Net Class Usage Examples

Public Methods

Method Description
FrameCount ( ) : int

Returns the number of stack frames.

Returns the number of stack frames.

Get ( Context cx ) : Dim.ContextData

Returns the ContextData for the given Context.

Returns the ContextData for the given Context.

GetFrame ( int frameNumber ) : Dim.StackFrame

Returns the stack frame with the given index.

Returns the stack frame with the given index.

Private Methods

Method Description
PopFrame ( ) : void

Pops a stack frame from the stack.

Pops a stack frame from the stack.

PushFrame ( Dim frame ) : void

Pushes a stack frame on to the stack.

Pushes a stack frame on to the stack.

Method Details

FrameCount() public method

Returns the number of stack frames.
Returns the number of stack frames.
public FrameCount ( ) : int
return int

Get() public static method

Returns the ContextData for the given Context.
Returns the ContextData for the given Context.
public static Get ( Context cx ) : Dim.ContextData
cx Rhino.Context
return Dim.ContextData

GetFrame() public method

Returns the stack frame with the given index.
Returns the stack frame with the given index.
public GetFrame ( int frameNumber ) : Dim.StackFrame
frameNumber int
return Dim.StackFrame