Wolfgang (Blub) Bumiller
|
83a758e446
|
set olddecl so we don't access a NULL value when a variable already exists
|
2012-08-18 21:31:53 +02:00 |
|
Wolfgang (Blub) Bumiller
|
fc1622140b
|
oops - parsewarning returns true on -Werror, so we gotta invert here
|
2012-08-18 21:07:23 +02:00 |
|
Wolfgang (Blub) Bumiller
|
4d0be789ac
|
-Wtoo-few-parameters on by deafult - for -std=gmqcc it's always an error
|
2012-08-18 21:04:16 +02:00 |
|
Wolfgang (Blub) Bumiller
|
20635c5ae4
|
ast_type_adopt - ast_entfield now adopts the full type of the field
|
2012-08-18 20:30:24 +02:00 |
|
Wolfgang (Blub) Bumiller
|
6223d78ee3
|
-Wmissing-return-values, off by default, ignored with -std=gmqcc because in that standard it'll error
|
2012-08-18 20:19:43 +02:00 |
|
Wolfgang (Blub) Bumiller
|
588cd5018f
|
data/vars.qc - when declaring a function, and it had a prototype - use the new parameter names instead of the ones from the prototype, otherwise things get messy
|
2012-08-18 20:16:51 +02:00 |
|
Wolfgang (Blub) Bumiller
|
99fe673f0a
|
ast_unary needs to set its type
|
2012-08-18 20:02:18 +02:00 |
|
Wolfgang (Blub) Bumiller
|
7cc1609117
|
Disable the member-of namespace check when -std != gmqcc
|
2012-08-18 19:43:34 +02:00 |
|
Wolfgang (Blub) Bumiller
|
d88e3e8f24
|
move the member-of check for '.' to after applying the previous dot operators so we don't need parens around 'a.b' of 'a.b.c = x'
|
2012-08-18 19:42:38 +02:00 |
|
Wolfgang (Blub) Bumiller
|
0d4e6a2ee8
|
data/functions.qc for some more tests
|
2012-08-18 19:39:48 +02:00 |
|
Wolfgang (Blub) Bumiller
|
40fe52e665
|
ast_call: adopt the funciton's return type
|
2012-08-18 19:37:51 +02:00 |
|
Wolfgang (Blub) Bumiller
|
b7b0fcdc94
|
ast_return_delete: check if self->operand is actually set before ast_unref-ing it
|
2012-08-18 18:01:52 +02:00 |
|
Wolfgang (Blub) Bumiller
|
586bb07c4d
|
Use the current context, not the one from a NULL value... for ast_return
|
2012-08-18 18:00:20 +02:00 |
|
Wolfgang (Blub) Bumiller
|
701c387dbf
|
parse 'return' without values better
|
2012-08-18 17:58:51 +02:00 |
|
Wolfgang (Blub) Bumiller
|
6d84010dc4
|
ast_return should accept NULL as value to create a simple 'return' without a value
|
2012-08-18 17:58:38 +02:00 |
|
Wolfgang (Blub) Bumiller
|
2cf4895cc7
|
Fixup some possibly uninitialized value when parsing 'return'
|
2012-08-18 17:48:29 +02:00 |
|
Wolfgang (Blub) Bumiller
|
e239d2a33b
|
set expression.next to NULL in ast_block_set_type if it won't be set to a new value
|
2012-08-18 17:46:02 +02:00 |
|
Wolfgang (Blub) Bumiller
|
0e3bc87c75
|
Don't re-add defs which had a prototype
|
2012-08-18 17:42:38 +02:00 |
|
Wolfgang (Blub) Bumiller
|
79d8275eee
|
adding data/proto.qc
|
2012-08-18 17:32:32 +02:00 |
|
Wolfgang (Blub) Bumiller
|
24a21d0816
|
ast_value_copy should copy the expression substructure as well - exposing ast_value_copy to the outside since the parser needs to copy complete types when multiple variables are declared with commas
|
2012-08-18 17:16:20 +02:00 |
|
Wolfgang (Blub) Bumiller
|
3effcd2342
|
initialize the ast_expression node in ast_shallow_type properly as well
|
2012-08-18 16:58:17 +02:00 |
|
Wolfgang (Blub) Bumiller
|
9ffb79111f
|
initialize the ast_expression node in ast_type_copy properly
|
2012-08-18 16:57:22 +02:00 |
|
Wolfgang (Blub) Bumiller
|
4cf017bb6b
|
keep the filenames of all lexed files in a global lex_filenames vector because we don't strdup the filenames into lex_ctx, but copy the pointer
|
2012-08-18 16:47:33 +02:00 |
|
Wolfgang (Blub) Bumiller
|
6daf47fc5b
|
set parser->lex to NULL after closing
|
2012-08-18 16:42:17 +02:00 |
|
Wolfgang (Blub) Bumiller
|
16b5f28b40
|
don't deallocate the parser on a compile error -_-
|
2012-08-18 16:40:20 +02:00 |
|
Wolfgang (Blub) Bumiller
|
304cf173cd
|
ast_member's are now kept, since they are used like variables: multiple times
|
2012-08-18 16:38:50 +02:00 |
|
Wolfgang (Blub) Bumiller
|
ff1506983b
|
Add a comment about why we don't delete the owner
|
2012-08-18 16:32:07 +02:00 |
|
Wolfgang (Blub) Bumiller
|
6acf131369
|
Doh... wrong comment type
|
2012-08-18 16:30:28 +02:00 |
|
Wolfgang (Blub) Bumiller
|
ffd41cb1c7
|
ast_member will not unref/delete the owner: first of all the owner is always an ast_value, which won't get deleted anyway, secondly: the ast_members are collected and deleted after the owners, so ast_unref(owner) will cause invalid memory access
|
2012-08-18 16:30:09 +02:00 |
|
Wolfgang (Blub) Bumiller
|
b6ab0207b1
|
ast_block_collect: add to ast_block->collect and set the node's .keep=true, those will now always be deleted by the ast_block dtor
|
2012-08-18 16:27:40 +02:00 |
|
Wolfgang (Blub) Bumiller
|
5a78270ada
|
initialize ast_block->collect properly
|
2012-08-18 16:25:21 +02:00 |
|
Wolfgang (Blub) Bumiller
|
68e4a937f2
|
collect vector-member locals in ast_block->collect, like a garbage collection...
|
2012-08-18 16:24:26 +02:00 |
|
Wolfgang (Blub) Bumiller
|
897bd5727e
|
Revert "let ast_node have a use-counter, helpful for the parser to delete unused fields which otherwise get lost in the void"
This reverts commit 25ffd11aa6 .
|
2012-08-18 16:20:45 +02:00 |
|
Wolfgang (Blub) Bumiller
|
5b2d99bc99
|
Revert "ast_usecount macro for convenience"
This reverts commit e86c8ff0eb .
|
2012-08-18 16:20:36 +02:00 |
|
Wolfgang (Blub) Bumiller
|
d4587e5667
|
Revert "delete ast_members from parser->locals when they were unused"
This reverts commit cdeffb6de9 .
|
2012-08-18 16:20:23 +02:00 |
|
Wolfgang (Blub) Bumiller
|
cdeffb6de9
|
delete ast_members from parser->locals when they were unused
|
2012-08-18 16:20:17 +02:00 |
|
Wolfgang (Blub) Bumiller
|
e86c8ff0eb
|
ast_usecount macro for convenience
|
2012-08-18 16:18:51 +02:00 |
|
Wolfgang (Blub) Bumiller
|
25ffd11aa6
|
let ast_node have a use-counter, helpful for the parser to delete unused fields which otherwise get lost in the void
|
2012-08-18 16:16:43 +02:00 |
|
Wolfgang (Blub) Bumiller
|
a67110410b
|
clear lex->modelname
|
2012-08-18 16:04:20 +02:00 |
|
Wolfgang (Blub) Bumiller
|
d5e01ba904
|
clear all the remaining vectors in the parser
|
2012-08-18 15:59:29 +02:00 |
|
Wolfgang (Blub) Bumiller
|
9ed976d304
|
clear items_data in main
|
2012-08-18 15:58:20 +02:00 |
|
Wolfgang (Blub) Bumiller
|
3efad75336
|
clean lex->frames in lex_close
|
2012-08-18 15:57:21 +02:00 |
|
Wolfgang (Blub) Bumiller
|
2045321296
|
free parser->fields and parser->locals at parser_cleanup
|
2012-08-18 15:55:50 +02:00 |
|
Wolfgang (Blub) Bumiller
|
9eede6d303
|
fix a MEM_VECTOR_CLEAR to be done AFTER clearing the contents...
|
2012-08-18 15:53:35 +02:00 |
|
Wolfgang (Blub) Bumiller
|
483ce89d78
|
Delete fields in parser_cleanup
|
2012-08-18 15:51:53 +02:00 |
|
Wolfgang (Blub) Bumiller
|
e2faedcca8
|
the opening paren is now an operator - to fix up the precedence rules, now 'anentity.afunction()' compiles
|
2012-08-18 15:25:45 +02:00 |
|
Wolfgang (Blub) Bumiller
|
efc540ceba
|
add 'local' keyword in fields.qc, it's for qcc standard anyway
|
2012-08-18 14:56:15 +02:00 |
|
Wolfgang (Blub) Bumiller
|
267bb7d41e
|
get rid of additional trailing \n on parseerror
|
2012-08-18 14:55:37 +02:00 |
|
Wolfgang (Blub) Bumiller
|
46b4eb1f46
|
WARN_ERROR -> opts_werror in parser.c
|
2012-08-18 14:51:12 +02:00 |
|
Wolfgang (Blub) Bumiller
|
cb2f89e5bb
|
fields: testing function-fields
|
2012-08-18 14:50:30 +02:00 |
|