VariableRegistry.hx

Summary
VariableRegistry.hx
VariableRegistryKeeps track of variables shared between import modules.
Functions
getVariableRetrieves the vaule of a variable.
setVariableSets the vaule of a variable.

VariableRegistry

Keeps track of variables shared between import modules.

Summary
Functions
getVariableRetrieves the vaule of a variable.
setVariableSets the vaule of a variable.

Functions

getVariable

function getVariable(name: String): Dynamic

Retrieves the vaule of a variable.

Parameters

namethe name of the variable

Returns

The value of the variable.

setVariable

function setVariable(name: String,
value: Dynamic): Void

Sets the vaule of a variable.

Parameters

namethe name of the variable
valuethe new value
function getVariable(name: String): Dynamic
Retrieves the vaule of a variable.
function setVariable(name: String,
value: Dynamic): Void
Sets the vaule of a variable.
Close