Nikita Popov
|
21eb6807c9
|
Store lineno for zval ast nodes more efficiently
|
2014-07-27 13:25:32 +02:00 |
|
Nikita Popov
|
df42793cd2
|
Create namespace_name via AST
|
2014-07-26 21:53:50 +02:00 |
|
Nikita Popov
|
c07907121e
|
zend_do_return -> zend_emit_final_return
|
2014-07-26 21:32:48 +02:00 |
|
Nikita Popov
|
4ca4b423be
|
Make lexer return AST nodes
|
2014-07-26 21:22:54 +02:00 |
|
Nikita Popov
|
a51e00a8cd
|
Add functions for create str/long ast directly
|
2014-07-26 19:01:14 +02:00 |
|
Nikita Popov
|
edd9fcab1e
|
Fix leaks
Must find a good way to handle constant expressions...
|
2014-07-26 18:08:31 +02:00 |
|
Nikita Popov
|
b9be66ebf2
|
Implement declare()
|
2014-07-22 16:11:19 +02:00 |
|
Nikita Popov
|
3becdb3376
|
__halt_compiler() without haling compiler
|
2014-07-22 14:25:19 +02:00 |
|
Nikita Popov
|
8a2ff6b53d
|
Partial NS port (semicolon, no errors)
|
2014-07-22 12:45:44 +02:00 |
|
Nikita Popov
|
b6c9eb21d4
|
Port constant declaration
|
2014-07-22 11:55:07 +02:00 |
|
Nikita Popov
|
37ac1b96ed
|
Port use statement
|
2014-07-21 22:49:31 +02:00 |
|
Nikita Popov
|
b24bda6be1
|
Partial port of class declarations
|
2014-07-21 16:34:45 +02:00 |
|
Nikita Popov
|
461bce5222
|
Prepare zend_ast_decl for reuse with classes
|
2014-07-21 15:38:21 +02:00 |
|
Nikita Popov
|
291bcfe4f1
|
Port trait uses
|
2014-07-19 22:39:01 +02:00 |
|
Nikita Popov
|
222430d99c
|
Port class const decl
|
2014-07-19 15:13:50 +02:00 |
|
Nikita Popov
|
43d6e599cf
|
Port property declarations
|
2014-07-19 14:54:56 +02:00 |
|
Nikita Popov
|
547331d24d
|
Port methods
The duplicated magic method checks are ugly
|
2014-07-19 12:52:44 +02:00 |
|
Nikita Popov
|
adbddf4e5b
|
Support static closures
|
2014-07-18 15:47:46 +02:00 |
|
Nikita Popov
|
405b97e8a9
|
Handle function doc comments
|
2014-07-18 15:23:16 +02:00 |
|
Nikita Popov
|
cdcf78f730
|
Fix lexer/compiler interdependency
|
2014-07-18 15:05:31 +02:00 |
|
Nikita Popov
|
359f99fe48
|
Use dedicated func_decl ast node
Functions need a bunch of extra info, that becomes inconvenient
to handle using the normal ast structure.
|
2014-07-18 14:57:00 +02:00 |
|
Nikita Popov
|
ae5ba9abfb
|
Port closures
|
2014-07-18 12:58:24 +02:00 |
|
Nikita Popov
|
abfc8bd894
|
Port closure use
|
2014-07-18 12:30:39 +02:00 |
|
Nikita Popov
|
a75921dcb1
|
Port __FUNCTION__ to AST
|
2014-07-16 23:10:16 +02:00 |
|
Nikita Popov
|
f589713cc4
|
Preliminary function decl support
Problem: __FUNCTION__ etc don't work anymore, due to lexer/parser
interdependency.
|
2014-07-16 00:07:09 +02:00 |
|
Nikita Popov
|
1ee3277aba
|
Port parameter defs
Has one bug re \self
|
2014-07-14 23:03:53 +02:00 |
|
Nikita Popov
|
47f0717a69
|
Rename params -> args
|
2014-07-13 13:11:55 +02:00 |
|
Nikita Popov
|
c58079b4fd
|
Port static vars
Need to figure out the constant expr stuff
|
2014-07-12 17:00:53 +02:00 |
|
Nikita Popov
|
8577f58e52
|
Store (bad) estimate of lineno with ast
Currently not used yet
|
2014-07-12 14:03:42 +02:00 |
|
Nikita Popov
|
e367e68111
|
Port try/catch
Down to 50 failing Zend tests
|
2014-07-12 13:50:58 +02:00 |
|
Nikita Popov
|
dde9faee2e
|
Port switch
|
2014-07-11 15:31:47 +02:00 |
|
Nikita Popov
|
f12c1482a3
|
Port foreach
|
2014-07-11 12:16:21 +02:00 |
|
Nikita Popov
|
4215969904
|
Port if (partial)
|
2014-07-10 16:38:04 +02:00 |
|
Nikita Popov
|
80c44ad510
|
Support creating of ast nodes with >3 children
|
2014-07-10 15:18:08 +02:00 |
|
Nikita Popov
|
1738ee7e5a
|
Port do/while
|
2014-07-10 14:46:22 +02:00 |
|
Nikita Popov
|
c7656c06cc
|
Port while
Note: From here on everything is broken
|
2014-07-10 14:35:59 +02:00 |
|
Nikita Popov
|
117714d122
|
Port goto label
|
2014-07-09 23:46:22 +02:00 |
|
Nikita Popov
|
d14b763bb9
|
Make unticked_statement an ast node (usually NULL)
|
2014-07-09 23:39:21 +02:00 |
|
Nikita Popov
|
5bf0c28fe3
|
Port throw
|
2014-07-09 22:48:42 +02:00 |
|
Nikita Popov
|
289265402a
|
Port echo
|
2014-07-07 21:14:14 +02:00 |
|
Nikita Popov
|
36c3cf3198
|
Port return statement
|
2014-07-07 21:06:02 +02:00 |
|
Nikita Popov
|
111ad71d38
|
Rename ZEND_CONST to ZEND_AST_ZVAL
|
2014-06-28 18:03:26 +02:00 |
|
Nikita Popov
|
0237954778
|
Bring static scalar AST more in line with normal AST
|
2014-06-26 13:06:39 +02:00 |
|
Nikita Popov
|
1b84b87e78
|
Const eval unary pm (as previously)
|
2014-06-26 12:43:20 +02:00 |
|
Nikita Popov
|
e26c6d663a
|
Implement constant expression folding as a separate pass
|
2014-06-23 21:59:14 +02:00 |
|
Nikita Popov
|
90d36554e2
|
Support string interpolation
|
2014-06-21 20:06:46 +02:00 |
|
Nikita Popov
|
b6789b1dd6
|
zend_ast_dynamic_ast returns new node
|
2014-06-21 19:31:08 +02:00 |
|
Nikita Popov
|
657762ee2b
|
AST stage 2.4
|
2014-06-21 18:54:13 +02:00 |
|
Nikita Popov
|
55ab55c417
|
Add ability to specify additional attr in AST
|
2014-06-19 13:48:50 +02:00 |
|
Nikita Popov
|
89ecd73a04
|
Make ast->children a uint
Future optimization: only use uint for dynamic lists and use a
uchar or even an introspection function to get the child count.
|
2014-06-19 13:48:50 +02:00 |
|