From 3e68f18e2e10d90bd094707141c943146482f68b Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Fri, 26 Jun 2020 15:02:38 +0200 Subject: Add option to filter keywords --- src/Lang/Cpp/CppParser.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Lang/Cpp/CppParser.ts') diff --git a/src/Lang/Cpp/CppParser.ts b/src/Lang/Cpp/CppParser.ts index d59ec9b..708af68 100644 --- a/src/Lang/Cpp/CppParser.ts +++ b/src/Lang/Cpp/CppParser.ts @@ -145,6 +145,8 @@ export default class CppParser implements ICodeParser { // Non type keywords will be stripped from the final return type. this.keywords = this.typeKeywords.concat(this.stripKeywords); + // Remove keywords that should be filtered + this.keywords = this.keywords.concat(this.cfg.Generic.filteredKeywords); this.lexerVocabulary = { ArraySubscript: (x: string): string => (x.match("^\\[[^\\[]*?\\]") || [])[0], -- cgit v1.2.3