David Millington

Results 10 issues of David Millington

SuperObject.pas is only aware of XE7 and earlier. On lines 91-92, the code: ``` {$if defined(VER230) or defined(VER240) or defined(VER250) or defined(VER260) or defined(VER270) or defined(VER280) } ``` should be...

This branch implements a memory pool for each syntax node class. It means that nodes are allocated not from FastMM, but from a pool. When freed, the memory is returned...

I added a string cache to DAST in August last year, which kept down memory fragmentation when it was used repeatedly. It was never pulled into the main branch and...

Using the following unit: ``` unit Test; interface type IFoo = interface function Bar : IList; end; implementation end. ``` the generic type parameters for IFoo and IList are exposed...

I noticed that visibility specifiers all have their own node type: ``` etc. ``` Two things stand out: a) There is a "visibility" attribute which is always True. I haven't...

enhancement

Hello, First - I love that you are providing a treesitter grammar for Pascal and Delphi. Thankyou. Using it from Python, I found I needed to use the [build from...

Hello, Testing against the following Delphi code: ```Delphi unit Ifdefs; interface type {$IF DEFINED(MSWINDOWS)}IWindowsOnly = interface end;{$ELSE}ISomethingElse = interface end;{$ENDIF} {$IFDEF NOTDEFINED} INotDefined {$ELSE} IInverse {$ENDIF} = interface end; ```...

Hello, Falcon supports ASGI applications via falcon.asgi.app. However, it looks like falcon-swagger-ui only supports traditional WSGI apps. When using the [usage sample](https://github.com/rdidyk/falcon-swagger-ui), a Falcon ASGI app (here run with unicorn)...

### Preflight Checklist - [x] I have searched [existing issues](https://github.com/anthropics/claude-code/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug) and this hasn't been reported yet - [x] This is a single bug report (please file separate reports for different...

bug
has repro
platform:macos
area:core
memory
autoclose

Hello! First, I really like the themes and Aubergine would be my favorite light theme -- except for one issue. In a text view, such as Copilot, inline code is...