Wilfred Hughes

Results 332 issues of Wilfred Hughes

It looks like you're allowing anyone to make changes to the site, and any user can impersonate anyone. I don't see anything obviously malicious, although changes like https://github.com/breck7/pldb/commit/2bdc8cda84b66fb3c8aef4637b696aee97c06917 look wrong....

This makes two changes to the Docker build: * It excludes the Dockerfile from the build process, so we can make changes to the Dockerfile and Docker uses its layer...

enhancement

I'm indexing several hundred repos, and a few of them are currently empty. This causes an error in hound's logs: ``` 2016/11/28 18:08:09 Failed to git fetch /users/foo/hound/data/vcs-ce7a7ad7a7faafc79f1aaaf7df43a2f9da56539, see output...

enhancement
help wanted

``` function foo(): T where T super string { return "foo"; } ``` Currently `where` is treated as the name of a type.

syntax

``` class Foo {} class bar {} class :biz {} ``` ![Screenshot 2021-05-12 at 16 12 56](https://user-images.githubusercontent.com/70800/118055426-f2ed9c00-b33c-11eb-89b4-dbe5a37dd38a.png)

syntax

``` const vec v = vec[0]; function foo(vec $v = vec[0]): void {} ``` The first occurrence of `int` is incorrectly highlighted here.

syntax

Given the SQL: ``` ALTER TABLE geoheader ADD COLUMN geom geometry(MultiPolygon, 4269); ``` The parser produces: ``` source_file (0, 3) - (2, 0) alter_statement (0, 3) - (1, 25) ALTER...

Given the following SQL: ``` CREATE OR REPLACE VIEW geo_state AS SELECT geom FROM geoheader; ``` the parser produces: ``` source_file (0, 3) - (3, 0) create_view_statement (0, 3) -...

E.g. from a comment or docstring in tramp.el.

``` (defun foo () (let ((xyz 123)) ;; See `xyz'. )) ``` Neither the start nor the end of `xyz` works here.