1
0
Fork 0
forked from fun/fun

Doxygen code comment cleanups and fixes. No code changes. (0.41.5)

This commit is contained in:
Johannes Findeisen 2026-05-01 22:19:15 +02:00
commit 892fa3cfbf
88 changed files with 224 additions and 265 deletions

View file

@ -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: {

View file

@ -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: {

View file

@ -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: {