AlexHaxe
AlexHaxe
codedox plugin (and others) fails to launch because of an exception thrown (`TypeError: Cannot assign to read only property '__class__' of object '[object String]'`). somehow a vshaxe compiled with Haxe...
Haxe 4.x produces: `String.prototype.__class__ = String;` whereas nightly produces `Object.defineProperty(String.prototype,"__class__",{ value : String, enumerable : false});`. with vshaxe compiled to 4.x there seems to be no problem when accessing `__class__`...
I'm on Ubuntu 20.04 and VSCode 1.54.2 with no problems. so it might just be CentOS 7 being no longer supported by VSCode. there is at least one other issue...
there is two competing wrapping rules at play here: methodChain and callParameter wrapping. The first one wraps at `.then`, but that doesn't satisfy `maxLineLength`, so the second one wraps at...
The current solution reports one line for every file (I removed stacktraces). Formatter doesn't track or cache `hxformat.json` files and will run a new detection and load for every single...
I plan on adding a proper wrapping option for if-else chains used in expression-ifs, so they don't run into default wrapping.
that's the first time I've seen such a code style. and no, it's not available out of the box. making formatter support it requires changes to indentation and whitespace /...
> Could you elaborate a bit on this? Is tabWidth an integer var in the code or are you intending this to be an alternative to my configuration suggestions? `tabWidth`...
formatter uses lix for dependency management. so you need to run ```bash npm i npx lix download npx haxe build.hxml ``` or `npx haxe buildCpp.hxml`, `npx haxe test.hxml`, etc. as...
whitespace issue fixed, emptylines still open