Qi

Results 10 comments of Qi

Through debugging I think I found the bug: The `SourceOrdering.getAllAccessorsProvider(...).CollectedOrdering.toElement()` method only accepts `getKind()=DECLARED` types and not the `ERROR` kind (i.e. `ErrorType` which is a sub-type of `DeclaredType`). In my...

FYI, folly's CMake now [has an option](https://github.com/facebook/folly/blob/b88123c2abf4b3244ed285e6db0d4bea2d24f95f/CMakeLists.txt#L193) to disable exception_tracer

I am also interested in this feature, and I have an even simpler suggestion: Why don't we use the tag dispatch trick and change the current default print to `template...

After reading the source code of Pybind11 and `FindPython` from CMake, the actual problem is an incompatibility between the two: Pybind11 assumes that you don't want to link against debug...

Put it in your own project/module's CMakeList, preferably before the first reference to `Python::*` or `pybind11::*` targets if any. If your project (or any of its dependencies) uses FindPython3, then...

> Most other extensions in VSCode work just fine and are able to access HTTPS endpoints correctly. > the sidebar is working and showing workflow runs. TL;DR Most extensions, including...

That's a shame. VSCode should really provide a common solution for other Node.js codebases. One thought is the side-bar part of this extension works, so whatever way it uses to...

@christopher-caldwell Good point! Instead of `val_or_default`, the function can have the signature `required_value(expr, [default])`. Then if the variable is not set and the default argument is not supplied, the workflow...

This is perhaps another timestamp-related bug. You can see the last three digits of the timestamp is 000, which is due to the low-precision clock we use for MacOS. If...

I would even raise this to a semi-bug: on MacOS the Documents folder is sync'ed to iCloud by default which causes multiple problems: * there's no easy way to exclude...