Jeff Ward

Results 91 comments of Jeff Ward

I just tried the HXCPP compile cache, it's pretty easy to setup - create a directory and set an environment variable pointing to that directory. What platform are you on?...

@jcward said: @mpoint4u thanks for the note. You can safely ignore those errors in launch.json. The latter are a [bug in vscode](https://github.com/Microsoft/vscode/issues/546) ("node" isn't the only debug type that's accepted.)...

@mpoint4u said: sorry, a little late ... but here is what I get in /tmp/adapter.log when I try to launch the debugger in VS Code on the DisplayingABitmap - test...

Hi @mpoint4u - in your log, you can see that the client never connected -- in the below "disconnect" means you hit the stop button in the GUI: 1450452095.19971: VSCHS:...

While your vscode is sitting waiting for the connection, try: ``` telnet localhost 6972 ``` or ``` telnet 127.0.0.1 6972 ``` From a terminal window. This will attempt to connect...

Did you pull and rebuild? There should be a warning that the client didn't reconnect. So then, make sure the app has all 3: 1) Compiled in `-debug` mode 2)...

Hmm, it seems like you have all the elements. I'll do some more Mac testing this evening and get back to you. It could also be interesting, while your code...

@mpoint4u - sorry about your crash. If you're up and running again, FYI, a large fix was checked in #19 / #31. I'm not sure it's the same as the...

@arthurferrai ah, ok, I'm not entirely familiar the conventions of OSX apps directory structure. So the `test openfl` app's `launch.json` [run path](https://github.com/jcward/vscode-hxcpp-debug/blob/master/test%20openfl/.vscode/launch.json#L79-L80) may need to be modified?

Well, the original idea behind this library was to introduce overloaded functions via static extension, which allows you to add this functionality to core types, like String. As such, this...