Gabor Marton
Gabor Marton
Example (please view with a monospaced font) In vicmd without opp.zsh sourced: pressing dE at the cursor asdf asdf -> as asdf ==^ then executing vi-repeat-change at the cursor as...
This patch is about supporting https://reviews.llvm.org/D128704 from Clang. When doing CTU analysis setup we parse the .cpp to get an .ast and then we run clang-extdef-mapping on the .cpp file...
We should run all Clang tests plus the LLDB tests on our macOS machine too whenever there is a new commit on our dev branch (ctu-clang7 atm).
We should simplify all `Visit*Decl` functions where we iterate over the lookup results. The whole iteration could be part of a subroutine with a name like `FindEquivalentPreviousDecl`
Import starts with a lookup and then we create a new Decl. Then in certain cases (e.g. `CXXConstructorDecl`) we further import other Decls (base classes, members through `CXXConstructorDecl::inits()`) before connecting...
This code may not be needed below, we should write a unit test which exercises it. ``` const ArrayType *FoundArray = Importer.getToContext().getAsArrayType(FoundVar->getType()); const ArrayType *TArray = Importer.getToContext().getAsArrayType(D->getType()); if (FoundArray &&...
Code to be imported: ``` void declToImport() {}; ``` ``` From: void declToImport() { } ; To: void declToImport() { } From: TranslationUnitDecl 0x1821670 |-TypedefDecl 0x1821c00 implicit __int128_t '__int128' |...
I was wondering how could we avoid these errors when a node from the "from" context is passed to a constructor of a node in the "to"context. This came up...