diff options
| author | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-12-31 04:07:55 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-02-20 22:02:22 +0100 |
| commit | 31f6517aa5d8d3ccdd0b39880337c000943d08c1 (patch) | |
| tree | 2c3c5240470a592f4c0bd134d779f4f3c25d6b2b /src/CodeParserController.ts | |
| parent | 10aac7196a3a701860525d0f466896efe182d39a (diff) | |
| download | doxdocgen-31f6517aa5d8d3ccdd0b39880337c000943d08c1.tar.gz | |
-- Completed unit tests for operators. Conversion operators aren't working yet.
-- Renamed all C things to Cpp since that is really what they are.
-- Made empty files for the remaining unit tests.
Diffstat (limited to 'src/CodeParserController.ts')
| -rw-r--r-- | src/CodeParserController.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CodeParserController.ts b/src/CodeParserController.ts index 32d1d75..1b42f3d 100644 --- a/src/CodeParserController.ts +++ b/src/CodeParserController.ts @@ -10,7 +10,7 @@ import { } from "vscode"; import CodeParser from "./Common/ICodeParser"; import { Config } from "./Config"; -import CParser from "./Lang/C/CParser"; +import CppParser from "./Lang/Cpp/CppParser"; /** * * Checks if the event matches the specified guidelines and if a parser exists for this language @@ -86,7 +86,7 @@ export default class CodeParserController { switch (lang) { case "c": case "cpp": - parser = new CParser(this.cfg); + parser = new CppParser(this.cfg); break; default: // tslint:disable-next-line:no-console |