HallofFamer
HallofFamer
I'm trying to add native functions/methods to the standard library of my own CLox implementation. Everything is going smoothly, until I come across native functions/methods that accept callback closures as...
I plan to split the number type from CLox into int and float, in which `int` is 64bit long integer and `float` is 64 bit double-precision floating point number. The...
It seems that the way jLox stores 'this' is very inefficient, to get the value of 'this' is slow and especially a problem when writing native methods. I am thinking...
It seems that for me, the google drive link only works with one session. If I close the web browser with dillinger, and restart the browser later to visit dillinger...
Well lately I've been reading a book about smalltalk, and I find its object oriented boolean class very impressive, and it's the truly object oriented way to handle conditionals. A...
It seems that it is possible for us to add Lox as a language at Linguist. We will need to submit a PR to linguist (https://github.com/github-linguist/linguist) and complete the checklist:...
I took a look at it and I very like what is being implemented. In my own framework I use classes for Int, Float, String and Array, but sometimes it...
Hi there, I was wondering if it is possible to bring scalar objects extensions to PECL. I'd love to see scalar objects making it to PHP core one day, but...
I heard from PHP Reddit that Nikita is now hired to for Jetbrains. Its excellent news, and I wonder if it is possible to bring IDE support for scalar objects?...
Hello there. I know right now when you assign a new handler, it will simply override the old handler, but I was wondering that in future, is it is possible...