AlexHaxe
AlexHaxe
since releasing vshaxe compiled with Haxe nightly all other Haxe plugins fail to initialise with a stacktrace that starts with: `TypeError: Cannot assign to read only property '__class__' of object...
Some people might want to prevent developers from using short lambdas. Not sure what opposite of this check should look like, should it enforce use of short lambdas, e.g. mark...
The following checks currently use KwdFunction: - HiddenFieldCheck - InnerAssignmentCheck - ReturnCountCheck - TraceCheck - UnusedLocalVarCheck - InterfaceCheck - UnnecessaryConstructorCheck - MethodCountCheck - EmptyBlockCheck - LeftCurlyCheck - NeedBracesCheck - RightCurlyCheck...
I am trying to use `Sys.stdin().readAll` to read all data from stdin (passed by e.g. `node run.js < file.txt`). Apparently the last readBytes call returns 0 which prompts haxe.io.Input to...
When running `haxelib run hxcpp myProgram.cppia -v` or `bin/Cppia myProgram.cppia -v` calling `Sys.args ()` will return `["myProgram.cppia", "-v"]` instead of just `["-v"]` (like e.g. a cpp compiled version does). According...
I noticed that when compiling formatter with hxcpp 4.0.19 or git version the resulting binary will use 100% CPU and execution will not reach main function. I managed to drill...
When selecting a portion of source code CodeActions should only offer one quickfix entry to fix all occurences (per type). e.g. when having 10 unused imports in a file, marking...
compiling a project using jQueryExtern with Haxe 4.1.x and `-dce no` will result in a .js file containing the following snippet: ```haxe let typeofJQuery = typeof($); if(typeofJQuery != "undefined" &&...
#### Description This adds a [Haxe](https://www.haxe.org) module that will display currently installed / active Haxe version when in a directory that contains Haxe related files and folders, e.g. files ending...
added `markiscodecoverage.detailCoverageMode` and `markiscodecoverage.summaryWithCurly` config parameters users can choose to have detailed diagnostics for all files (default == behaviour of previous versions), only for open files, only for active files...