Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
document getlex_n<[inso]> and bindlex_n<[inso]>
  • Loading branch information
FROGGS committed Oct 28, 2013
1 parent ffcebf9 commit c91640d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/ops.markdown
Expand Up @@ -1493,6 +1493,23 @@ Gets hold of the argument capture passed to the current block.
It's valid to implement this exactly the same way as savecapture if there's no performance benefit to be had in a split.
Used by the multi-dispatcher.

## getlex_n
* `getlex_ni(str $name)`
* `getlex_nn(str $name)`
* `getlex_ns(str $name)`
* `getlex_no(str $name)`

Looks up the lexical with the specified name and the specified type. An error is thrown if it does not exist or if the
type is incorrect.

## bindlex_n
* `bindlex_ni(str $name)`
* `bindlex_nn(str $name)`
* `bindlex_ns(str $name)`
* `bindlex_no(str $name)`

Binds to the lexical specified by name and type. An error is thrown if it does not exist or if the type is incorrect.

# Variable opcodes

## bind
Expand Down

0 comments on commit c91640d

Please sign in to comment.