JakobOvrum
JakobOvrum
I've ever seen 437 sent during authentication, so I can't comment on this one. Ping @ShadowNinja?
`init` is a [special property](http://dlang.org/property) in D and should never be used as a member name, whether it's a field or a method. There have been talks in the past...
I'm adding tests to it, and the static interface doesn't make a whole lot of sense when enums are strings. Consider the following correct test: ``` d enum E {...
> DSFML ( https://github.com/Jebbs/DSFML ) does use non-void setters too, so I'm at least not the only person in the world who does it. I think non-void setters should be...
Thanks a bunch for filing this. I'll get to reducing your examples once I have time.
Sorry, I totally forgot about this. It works again in 2.065. I'm divided on whether supporting 2.064 is something I really want to do.
Being up to date on Lua 5.2, I also know it's not released yet :) Since work3, there have been work4, work5 and two alpha releases.
Ah right. Well I'm planning on trying 5.2 once it's properly released, I suspect that won't be very far away. I'll probably look into it then, and the link will...
This used to be supported in the old LuaD. It's pretty easy to do, the question is how to nicely accommodate both the general case (doString/doFile with a custom error...
doString/doFile now use debug.traceback (merging with your fork earlier), but this function only exists if openLibs was called. I'd rather like to avoid a convoluted runtime check and instead redesign...