Thomas E Enebo

Results 276 comments of Thomas E Enebo

This was added in commit b0a2eaf394bede5d1db4fdcf9ae5135f0ffcf446 Not sure the best way to handle this though. Older JRuby versions do not have this new event type but 10 does. This will...

@sherrinjacob10 Any chance they could explain what they mean by STDERR vs STDOUT? Like what JRuby is doing which is only as STDERR? I will note that I am using...

@hurricup Thanks for the update. For whatever reason I saw a picture dumping rbconfig and just thought they were sharing that info and missed the ```>output``` part. I know we...

I just tried with latest 9.4.x and this works as expected on Windows 10. I suspect if this is a bug in 9.3.1.0 it has been corrected since then. @sherrinjacob10...

Reduced to: ```ruby p ["Done"]&.[](0)&.to_s ``` The basic problem is fairly obvious from the IR: ```text 0 %self = recv_self() 1 line_num(;n: 0, coverage: false, oneshot: false) 2 %v_4 =...

This is prism AST: ```text @ ProgramNode (location: (1,0)-(1,23)) ├── flags: ∅ ├── locals: [] └── statements: @ StatementsNode (location: (1,0)-(1,23)) ├── flags: ∅ └── body: (length: 1) └── @...

Boo. In some ordering code to make sure receiver executes before arguments I pass in lazy and end label so they do get shared. This is not necessarily wrong but...

ok I thought I found something and I sort of have but not as cut and clean as I thought. Families ipv6 and ipv4 are returned in that order and...

A little more looking into this. So problem seems to be: ```ruby socket = Socket.new(addrinfo.pfamily, addrinfo.socktype, addrinfo.protocol) socket.bind(local_addrinfo) if local_addrinfo result = socket.connect_nonblock(addrinfo, exception: false) ``` This does not work...