mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
Minor refactor of function call setup to allow for multiple arguments.
This commit is contained in:
1
opcode.c
1
opcode.c
@@ -7,6 +7,7 @@
|
||||
#define BRANCH OP_HAS_BRANCH, 2
|
||||
#define CFUNC (OP_HAS_SYMBOL | OP_HAS_CFUNC | OP_HAS_VARIABLE_LENGTH_ARGLIST), 2
|
||||
#define UFUNC (OP_HAS_UFUNC | OP_HAS_VARIABLE_LENGTH_ARGLIST), 2
|
||||
#define CALLSEQ_END_IMM (OP_IS_CALL_PSEUDO), 0
|
||||
#define CLOSURE_PARAM_IMM (OP_IS_CALL_PSEUDO | OP_HAS_BINDING), 0
|
||||
#define CLOSURE_CREATE_IMM (OP_HAS_BLOCK | OP_IS_CALL_PSEUDO | OP_HAS_BINDING), 0
|
||||
#define CLOSURE_CREATE_C_IMM (OP_IS_CALL_PSEUDO | OP_HAS_BINDING), 0
|
||||
|
Reference in New Issue
Block a user