From 049502aa73c7d43627b9856219b18bf0da98a255 Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Sat, 20 Oct 2018 14:57:16 +0200 Subject: Add basic Python files --- src/Lang/Python/PythonDocGen.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/Lang/Python/PythonDocGen.ts (limited to 'src/Lang/Python/PythonDocGen.ts') 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."); + } +} -- cgit v1.2.3