diff options
Diffstat (limited to 'src/Lang/Python')
| -rw-r--r-- | src/Lang/Python/PythonDocGen.ts | 8 | ||||
| -rw-r--r-- | src/Lang/Python/PythonParser.ts | 17 |
2 files changed, 25 insertions, 0 deletions
diff --git a/src/Lang/Python/PythonDocGen.ts b/src/Lang/Python/PythonDocGen.ts new file mode 100644 index 0000000..4b90f86 --- /dev/null +++ b/src/Lang/Python/PythonDocGen.ts @@ -0,0 +1,8 @@ +import { Range } from "vscode"; +import { IDocGen } from "../../Common/IDocGen"; + +export class PythonDocGen implements IDocGen { + public GenerateDoc(rangeToReplace: Range) { + throw new Error("Method not implemented."); + } +} diff --git a/src/Lang/Python/PythonParser.ts b/src/Lang/Python/PythonParser.ts new file mode 100644 index 0000000..2d26ed8 --- /dev/null +++ b/src/Lang/Python/PythonParser.ts @@ -0,0 +1,17 @@ +import { TextEditor } from "vscode"; +import ICodeParser from "../../Common/ICodeParser"; +import { IDocGen } from "../../Common/IDocGen"; +import { Config } from "../../Config"; + +export default class CppParser implements ICodeParser { + + protected readonly cfg: Config; + + constructor(cfg: Config) { + this.cfg = cfg; + } + + public Parse(activeEditor: TextEditor): IDocGen { + throw new Error("Method not implemented."); + } +} |