James Coglan

Results 63 comments of James Coglan
trafficstars

Apologies, I have not had time to work on this over the summer but would be keen to get it integrated. The version of .NET on my machine now seems...

I'd also be obliged if you could rework the GitHub Actions config to use the `matrix` system where possible.

Did you make meaningful changes to `package.json` or just reformat it? If not, it would help a great deal if you could remove the part of the history that modifies...

I have found that adding `net7.0` to the `` field in a `csproj` file causes that project's tests to run, but you still get warnings about packages being the wrong...

> These should be defined once in a shared file and imported, rather than being copy-pasted between every test suite. My apologies, on re-examining the Java tests, these helpers _are_...

A bit of experimentation indicates that I can get the tests working by wrapping each suite `.cs` file in a `namespace` block, matching the namespace names used in the Java...

Apologies for the flurry of comments yesterday, I believe I can resolve most of these issues myself. I'll make some changes on top of your work and then ask you...

I suspect this is a case of us not supporting the regex-specific syntax you're trying to use -- Canopy's character classes are only intended to support explicit lists and ranges...

Canopy does not support the `\p{...}` regex syntax and we have no plans to support it. It is inconsistently supported across our target languages and would be monumental effort to...

Yeah, `\u` currently won't work as we don't explicitly support it, so the engine assumes all data is literal and quotes it appropriately for the target language's string syntax. We'd...