Jeff Ward

Results 88 issues of Jeff Ward

One aspect of a large codebases is the potential for files to simply never be included in the build in the first place. This macro doesn't pick those up, obviously,...

In my project, the inCwd() function is always returning false, as all files happen to be referenced with absolute paths. I see that inCwd is excluding absolute paths, but what...

In trying to figure out why this isn't working for my large project, I've created a few simple tests, during which I noticed a few types that doesn't get reported....

Thinking about how I'll use this -- and this is probably related to #1, because I had to disable inCwd to get any output at all -- but I'll want...

Readme says: > Operations between two different units (for instance 50px + 3em) are not allowed. Technically CSS allows basic `+` and `-` operations on units of different type via...

MySQL server version 8 mysqljs 2.18.1 ```sql CREATE TABLE IF NOT EXISTS users ( id INTEGER NOT NULL AUTO_INCREMENT, PRIMARY KEY (id) ); CREATE TABLE IF NOT EXISTS foo (...

Two questions regarding #99: 1) I notice that the README.md now says `PixiJS v6 is required`, but the commits in 99 seem to mention v5. Was v5 skipped, or is...

Tested in Haxe 4.1.1 on Linux 64-bit **Issue:** The [hxml spec page](https://haxe.org/manual/compiler-usage-hxml.html) of the Haxe manual states (emphasis mine): > Inside .hxml files use a hash (i.e. #) to comment...

While including function definitions is supported, as3hx does not seem to support including expressions (which mxmlc does support): **Test.as:** ``` package { public class Test { public function Test():void {...

bug

AS3 / mxmlc supports conditional compiler variables / expressions: http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7abd.html (Issue #45 mentions these but only one specific use case.) You can use booleans to conditionally include entire blocks of...