Haojian Wu
Haojian Wu
Testcase: ``` A::A() = default; ``` This is an ambiguous case (expression vs the constructor decl) -- from the log, tree-sitter actually parsed both, but in the final stage it...
``` int {1}; // tree-sitter cannot parsed it. Foo {1}; // ok: it is parsed as compound_literal_expression ``` tree-sitter output for `int {1};` ``` ERROR [0, 0] - [0, 3])...
## Background I have written some node addons, and I feel kind of pain in converting JS to C++ and back in the API bindings. So I plan to write...
Starting from 1.69, VSCode implements a new [refactoring-preview](refactoring-preview) feature -- we can preview the change before applying a code action. However, this feature doesn't work with clangd. Reproduce steps: 1....
Update the readme file, be more kind to beginners.
Since [1](https://code.google.com/p/chromiumembedded/wiki/ReleaseNotes), wxWebViewChromium3 supports for print API in CEF 3.1650.1562. @steve-lamerton please reviews it. Thanks!
Due to the CEF3 [issue 1216](https://code.google.com/p/chromiumembedded/issues/detail?id=1216), wxWebViewChromium `GetPageSource` and `GetPageText` API will trigger DCHECK macro when the web page is empty in Debug version, which will cause crash. The issue...
Build wxWebViewChromium with upstream CEF3 version `r1623`, there are several errors as below: ``` Error 1 error C2061: syntax error : identifier 'TerminationStatus' c:\users\hokein\github\wxwebviewchromium\webview_chromium3.h 104 Error 2 error C2061: syntax...
See the example below. It is probably that libclangindex doesn't handle this case well. ``` #define GUARDED_BY(x) __attribute__((guarded_by(x))) class Mutex {}; struct Test { Mutex mu; int ab_ GUARDED_BY(mu); //...
Given the following dependent code: ``` template void k() { X a; // issue: go-to-def on X does nothing Y b; // good: go-to-def on Y jumps to the template...