Skip to content

probe-web / @probe-web/client / index / Variable

Interface: Variable

Defined in: debugger.ts:175

A variable, field or element, from Debugger.variables. Valid only until the core resumes.

Properties

PropertyTypeDescriptionDefined in
namestringIts name.debugger.ts:177
valuestringIts value, formatted by probe-rs.debugger.ts:179
typestring | nullIts type name, when known.debugger.ts:181
referencenumberPass to variables() for children; 0 means none.debugger.ts:183
parentnumberThe reference of the scope or variable this was listed under (the key setVariable needs).debugger.ts:185
evaluateNamestring | nullAn expression Debugger.evaluate accepts for this variable.debugger.ts:187
memoryReferencestring | nullIts address (e.g. 0x20000000), when it lives in memory.debugger.ts:189
namedChildrennumber | nullHow many named children it has, for paging with variables(reference, 'named').debugger.ts:191
indexedChildrennumber | nullHow many indexed children it has, for paging with variables(reference, 'indexed').debugger.ts:193