E.S. Quinn

Results 58 comments of E.S. Quinn

Would it be possible to set up a build guide for this? I've never set up a cygwin build environment before, and I have the same issue as samej71.

Yes, exactly. Like, a toggleable option. I do the search thing sometimes on the website when i want a quieter timeline and it'd be nice to have it in a...

I'd like to offer any assistance I could give too. Manu's patch suite will let me get one of the biggest hacks out of my project's scripting API.

Sure thing. Can I just pull from your repository's master branch?

Really sorry it took so long to finally get to this but I've started playing with your code, @TurkeyMan. Initial results are really promising at the moment, but I'm having...

Alright. Pretty minimal testcase to trigger the "no setters?!" error: ``` import luad.all; import std.stdio; pragma(lib, "lua5.1"); struct A { float a; @property { float c () { return float.init;...

Non-void setters do work and useful for cases like auto variable = struct.property = 1; And sorry, should I delete the comments and move them to the right PRs?

I'm not sure why it isn't more common; I found it out myself through experimentation when a void setter couldn't pass a value transitively, so I'm guessing it's an intentional...

It feels hackish as all get out and hurts me a bit, but following your hint, I put together a quick template to generate a getter/setter proxy that can be...

The first idea that pops into my head is that, generally, you're going to be using very specific structs as references (At least I am)--The first thing that jumps to...