aboutsummaryrefslogtreecommitdiff
path: root/callback_test.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Support returning any from callbacks (#1046)Phil Eaton2022-05-291-0/+12
| | | Support returning any from callbacks
* Add build constraints for non cgoYasuhiro Matsumoto2019-11-181-0/+7
|
* Move argument converters to callback.go, and optimize return value handling.David Anderson2015-08-211-0/+97
A call now doesn't have to do any reflection, it just blindly invokes a bunch of argument and return value handlers to execute the translation, and the safety of the translation is determined at registration time.