Aer/TODO

15 lines
598 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.
2018-11-13 20:26:22 +01:00
1. int[] $arr = {5, 5};
2018-11-07 19:53:15 +01:00
This syntax is unsupported yet. Should replace the array() function.
2018-11-28 14:01:55 +01:00
2. CHAR data type do not allow assignment of integer values in range of 0-255 inclusively as well as strings of 1-character length.
2018-11-07 19:53:15 +01:00
2018-11-28 14:09:21 +01:00
3. FLOAT data type do not allow assignment of integer values. In this case INT value should be automatically typecasted to FLOAT.
2018-11-07 19:53:15 +01:00
2018-11-28 14:09:21 +01:00
4. Class properties do not support strict data type hinting.
5. Closures and methods declaration / definition uses function keyword.