Property | Type | Description | |
---|---|---|---|
_GDBName | string | ||
_children | |||
_name | string | ||
_type | string | ||
_value | string |
Method | Description | |
---|---|---|
VariableInfo ( string name, string type, string value, string GDBName ) : System |
Constructor for Variable Info Object without inquiring for the variable's children.
|
|
VariableInfo ( string name, string type, string baseType, string value, |
Constructor for Variable Info Object inquiring for the variable's children
|
|
create ( string name, string type, string value, |
Call the right VariableInfo constructor for locals and arguments.
|
|
evaluateExpression ( string name, string &result, string GDBName ) : bool |
Evaluate an expression / Get the value of a variable. This method basically send a "-data-evaluate-expression" command to GDB and evaluate the result.
|
|
get ( string name, |
Gets the information about a variable/expression.
|
|
listChildren ( |
Gets the list of children for a given variable.
|
public VariableInfo ( string name, string type, string value, string GDBName ) : System | ||
name | string | The name of the variable. |
type | string | The data type of the variable. |
value | string | The value of the variable. |
GDBName | string | The GDB Name of the variable. |
return | System |
public VariableInfo ( string name, string type, string baseType, string value, |
||
name | string | The name of the variable. |
type | string | The data type of the variable. |
baseType | string | The base type of the variable. |
value | string | The value of the variable. |
dispatcher | The event dispatcher. | |
GDBNames | The names of the variables used by GDB. | |
VSNames | The Names of the variables used by VS. | |
return | System |
public static create ( string name, string type, string value, |
||
name | string | The name of the variable. |
type | string | The data type of the variable. |
value | string | The value of the variable. |
dispatcher | The event dispatcher. | |
return |
public static evaluateExpression ( string name, string &result, string GDBName ) : bool | ||
name | string | The expression/variable to be evaluated. |
result | string | The result of the expression/ value of variable. |
GDBName | string | The GDB Name of the variable. |
return | bool |
public static get ( string name, |
||
name | string | Variable name / expression. |
m_eventDispatcher | The event dispatcher. | |
m_frame | Current stack frame. | |
return |
public listChildren ( |
||
dispatcher | The event dispatcher. | |
parentType | string | The variable's parent data type. "*" means it is a pointer; "struct[]" means it is an array of /// structures; "struct" means it is a structure; and "[]" means it is an array. |
GDBNames | The names of the variables used by GDB. | |
VSNames | The Names of the variables used by VS. | |
hasVsNdK_ | bool | Indicate if the variable name uses or not the prefix "VsNdK_". |
GDBName | string | The GDB Name of the variable. |
return | void |
public ArrayList,System.Collections _children | ||
return |