Doxygen code comment cleanups and fixes. No code changes. (0.41.5)
This commit is contained in:
parent
4309ec2a52
commit
892fa3cfbf
88 changed files with 224 additions and 265 deletions
|
|
@ -23,9 +23,9 @@
|
|||
* - Exits with an error if the map is of the wrong type.
|
||||
*
|
||||
* Example:
|
||||
* // Bytecode: OP_KEYS
|
||||
* // Stack before: [{"a": 1, "b": 2}]
|
||||
* // Stack after: [["a", "b"]]
|
||||
* - Bytecode: OP_KEYS
|
||||
* - Stack before: [{"a": 1, "b": 2}]
|
||||
* - Stack after: [["a", "b"]]
|
||||
*/
|
||||
|
||||
case OP_KEYS: {
|
||||
|
|
|
|||
|
|
@ -25,9 +25,9 @@
|
|||
* or if map construction fails.
|
||||
*
|
||||
* Example:
|
||||
* // Bytecode: OP_MAKE_MAP 2
|
||||
* // Stack before: ["key1", 1, "key2", 2]
|
||||
* // Stack after: [{"key1": 1, "key2": 2}]
|
||||
* - Bytecode: OP_MAKE_MAP 2
|
||||
* - Stack before: ["key1", 1, "key2", 2]
|
||||
* - Stack after: [{"key1": 1, "key2": 2}]
|
||||
*/
|
||||
|
||||
case OP_MAKE_MAP: {
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@
|
|||
* - Exits with an error if the map is of the wrong type.
|
||||
*
|
||||
* Example:
|
||||
* // Bytecode: OP_VALUES
|
||||
* // Stack before: [{"a": 1, "b": 2}]
|
||||
* // Stack after: [[1, 2]]
|
||||
* - Bytecode: OP_VALUES
|
||||
* - Stack before: [{"a": 1, "b": 2}]
|
||||
* - Stack after: [[1, 2]]
|
||||
*/
|
||||
|
||||
case OP_VALUES: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue