We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
workoutNextFileName
determineNextFileName
1 parent 1c7a1a8 commit 9cd9111Copy full SHA for 9cd9111
extensions/ql-vscode/src/skeleton-query-wizard.ts
@@ -168,7 +168,7 @@ export class SkeletonQueryWizard {
168
this.storagePath,
169
);
170
171
- this.fileName = await this.workoutNextFileName(this.folderName);
+ this.fileName = await this.determineNextFileName(this.folderName);
172
await qlPackGenerator.createExampleQlFile(this.fileName);
173
} catch (e: unknown) {
174
void this.extLogger.log(
@@ -177,7 +177,7 @@ export class SkeletonQueryWizard {
177
}
178
179
180
- private async workoutNextFileName(folderName: string): Promise<string> {
+ private async determineNextFileName(folderName: string): Promise<string> {
181
if (this.storagePath === undefined) {
182
throw new Error("Workspace storage path is undefined");
183
0 commit comments