mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 16:53:45 +00:00
[JSCRIPT] Sync with Wine Staging 4.0. CORE-15682
This commit is contained in:
parent
9a0babd145
commit
660f7b9090
50 changed files with 1562 additions and 1242 deletions
|
@ -360,16 +360,17 @@ typedef struct {
|
|||
int length;
|
||||
} array_literal_expression_t;
|
||||
|
||||
typedef struct _prop_val_t {
|
||||
typedef struct _property_definition_t {
|
||||
unsigned type;
|
||||
literal_t *name;
|
||||
expression_t *value;
|
||||
|
||||
struct _prop_val_t *next;
|
||||
} prop_val_t;
|
||||
struct _property_definition_t *next;
|
||||
} property_definition_t;
|
||||
|
||||
typedef struct {
|
||||
expression_t expr;
|
||||
prop_val_t *property_list;
|
||||
property_definition_t *property_list;
|
||||
} property_value_expression_t;
|
||||
|
||||
BOOL try_parse_ccval(parser_ctx_t*,ccval_t*) DECLSPEC_HIDDEN;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue