Updated documentation for base instructions
This commit is contained in:
parent
dc0811a271
commit
f071d1dc72
5 changed files with 12 additions and 12 deletions
|
@ -4,8 +4,8 @@ Get an item from an array using "dot" notation.
|
|||
|
||||
## Parameters
|
||||
|
||||
* array (`array`, `instruction`) - The array to get the value from.
|
||||
* key (`string`, `instruction`) - The key to get the value for.
|
||||
* array (`array`) - The array to get the value from.
|
||||
* key (`string`) - The key to get the value for.
|
||||
|
||||
## Return
|
||||
|
||||
|
|
|
@ -4,9 +4,9 @@ Set an item in an array using "dot" notation.
|
|||
|
||||
## Parameters
|
||||
|
||||
* array (`array`, `instruction`) - The array to get the value from.
|
||||
* key (`string`, `instruction`) - The key to get the value for.
|
||||
* value (`any`, `instruction`) - The value to set.
|
||||
* array (`array`) - The array to get the value from.
|
||||
* key (`string`) - The key to get the value for.
|
||||
* value (`any`) - The value to set.
|
||||
|
||||
## Return
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ Gets an existing variable from the environment.
|
|||
|
||||
## Parameters
|
||||
|
||||
* name (`string`, `instruction`) - The name of the variable to get.
|
||||
* name (`string`) - The name of the variable to get.
|
||||
|
||||
## Return
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@ Invokes a method under a namespace.
|
|||
|
||||
## Parameters
|
||||
|
||||
* namespace (`string`, `instruction`) - The namespace to invoke the method under.
|
||||
* method (`string`, `instruction`) - The method to invoke.
|
||||
* parameters (`array`, `instruction`) - The parameters to pass to the method.
|
||||
* fail_on_error (`boolean`, `instruction`) - Whether to fail if the method throws an exception.
|
||||
* namespace (`string`) - The namespace to invoke the method under.
|
||||
* method (`string`) - The method to invoke.
|
||||
* parameters (`array`) - The parameters to pass to the method.
|
||||
* fail_on_error (`boolean`) - Whether to fail if the method throws an exception.
|
||||
|
||||
## Return
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ Sets aor overwrites a variable in the environment.
|
|||
|
||||
## Parameters
|
||||
|
||||
* name (`string`, `instruction`) - The name of the variable to get.
|
||||
* value (`any`, `instruction`) - The value to set.
|
||||
* name (`string`) - The name of the variable to get.
|
||||
* value (`any`) - The value to set.
|
||||
|
||||
## Return
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue