File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -102,17 +102,6 @@ codeql::PatternBindingDecl DeclTranslator::translatePatternBindingDecl(
102
102
}
103
103
104
104
codeql::ConcreteVarDecl DeclTranslator::translateVarDecl (const swift::VarDecl& decl) {
105
- if (decl.getNameStr () == " capacity" ) {
106
- std::string dump;
107
- llvm::raw_string_ostream oss{dump};
108
- decl.dump (oss);
109
- oss << ' \n ' ;
110
- decl.getDeclContext ()->printContext (oss);
111
- oss << ' \n ' ;
112
- oss << " pointer: " << &decl << ' \n ' ;
113
- oss << " mangling: " << swift::Mangle::ASTMangler ().mangleAnyDecl (&decl, true );
114
- dispatcher.emitDebugInfo (dump);
115
- }
116
105
auto entry = createEntry (decl);
117
106
entry.introducer_int = static_cast <uint8_t >(decl.getIntroducer ());
118
107
fillVarDecl (decl, entry);
You can’t perform that action at this time.
0 commit comments