Aer/TODO

13 lines
631 B
Plaintext
Raw Normal View History

2018-11-07 19:53:15 +01:00
TODO list for typehinting branch.
Below list contains things that should be changed/fixed/implemented.
1. The debug_backtrace() does not show information about arrays type.
* This is caused by ph7_context_new_array() creating a generic array w/o data type set.
Most probably more builtin functions returning an array are affected.
2019-04-06 09:36:33 +02:00
2. PH7 pass and return arrays by reference. This behaviour should be changed and a copy of array should be made instead.
2019-04-05 11:14:32 +02:00
2019-04-06 09:36:33 +02:00
3. All builtin functions should be reworked. Actually they can return any value, sometimes of different type than declared.
2019-04-05 11:14:32 +02:00
This causes errors during script execution.