mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 04:25:06 +02:00
Revert previous change
This commit is contained in:
parent
13be39ca22
commit
94b22440ac
1 changed files with 9 additions and 9 deletions
|
@ -1214,8 +1214,8 @@ typedef struct {
|
||||||
gc_header_type hdr;
|
gc_header_type hdr;
|
||||||
tag_type tag;
|
tag_type tag;
|
||||||
function_type fn;
|
function_type fn;
|
||||||
unsigned char pc;
|
int pc;
|
||||||
unsigned char num_args;
|
int num_args;
|
||||||
} macro_type;
|
} macro_type;
|
||||||
|
|
||||||
/** @brief A closed-over function with no variables */
|
/** @brief A closed-over function with no variables */
|
||||||
|
@ -1223,16 +1223,16 @@ typedef struct {
|
||||||
gc_header_type hdr;
|
gc_header_type hdr;
|
||||||
tag_type tag;
|
tag_type tag;
|
||||||
function_type fn;
|
function_type fn;
|
||||||
unsigned char pc;
|
int pc;
|
||||||
unsigned char num_args;
|
int num_args;
|
||||||
} closure0_type;
|
} closure0_type;
|
||||||
/** @brief A closed-over function with one variable */
|
/** @brief A closed-over function with one variable */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
gc_header_type hdr;
|
gc_header_type hdr;
|
||||||
tag_type tag;
|
tag_type tag;
|
||||||
function_type fn;
|
function_type fn;
|
||||||
unsigned char pc;
|
int pc;
|
||||||
unsigned char num_args;
|
int num_args;
|
||||||
object element;
|
object element;
|
||||||
} closure1_type;
|
} closure1_type;
|
||||||
/** @brief A closed-over function with zero or more closed-over variables */
|
/** @brief A closed-over function with zero or more closed-over variables */
|
||||||
|
@ -1240,9 +1240,9 @@ typedef struct {
|
||||||
gc_header_type hdr;
|
gc_header_type hdr;
|
||||||
tag_type tag;
|
tag_type tag;
|
||||||
function_type fn;
|
function_type fn;
|
||||||
unsigned char pc;
|
int pc;
|
||||||
unsigned char num_args;
|
int num_args;
|
||||||
unsigned char num_elements;
|
int num_elements;
|
||||||
object *elements;
|
object *elements;
|
||||||
} closureN_type;
|
} closureN_type;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue