|
| | cast.c |
| | Implements the OP_CAST opcode for converting a value to a target type.
|
| | echo.c |
| | Implements the OP_ECHO opcode for printing without a trailing newline.
|
| | len.c |
| | Implements the OP_LEN opcode for getting the length of arrays or strings in the VM.
|
| | line.c |
| | Implements the OP_LINE pseudo-opcode to update the current source line.
|
| | print.c |
| | Implements the OP_PRINT opcode for printing values in the VM.
|
| | sclamp.c |
| | Implements the OP_SCLAMP opcode for signed N-bit two's-complement wrapping.
|
| | to_number.c |
| | Implements the OP_TO_NUMBER opcode for converting values to integers in the VM.
|
| | to_string.c |
| | Implements the OP_TO_STRING opcode for converting values to strings in the VM.
|
| | typeof.c |
| | Implements the OP_TYPEOF opcode for obtaining a human-readable type name.
|
| | uclamp.c |
| | Implements the OP_UCLAMP opcode for unsigned N-bit wrapping.
|