summaryrefslogtreecommitdiff
path: root/src/callable.h
AgeCommit message (Collapse)Author
2014-03-17in php 5.3 environments, not all code was correctly initialized which ↵Emiel Bruijntjes
resulted in access to uninitialized data
2014-03-02added copy and move constructors to some classesEmiel Bruijntjes
2014-03-02types are not a C++11 class, introduced FixedValue class that can not change ↵Emiel Bruijntjes
type, and implemented both Object and Array to make use of that type, implemented - but not yet tested - Base::value() method
2014-03-01namespace implementation, compile issue for php 5.4 and higherEmiel Bruijntjes
2014-02-28a lot of refactoring, to make it much easier to define classes in an extensionEmiel Bruijntjes
2013-09-09work in progressEmiel Bruijntjes
2013-09-08Refactoring function class, and making it even more easy to directly enable ↵Emiel Bruijntjes
native C functions in PHP
2013-08-31{auto} work in progressEmiel Bruijntjes
2013-08-28fix compile issuesEmiel Bruijntjes
2013-08-28renamed variable class to value class, and implemented most of the methods in itEmiel Bruijntjes
2013-08-25By hiding a pointer to the callable object in front of the function name we ↵Emiel Bruijntjes
have managed to retrieve back the callable object, so we can pass all callbacks to one single function, which will further deliver them to the appropriate function object
2013-08-25{more work in progress: the function that was defined with c++ now gets ↵Emiel Bruijntjes
calls, but it does not yet call the actual implementation