We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
workoutNextFileName
determineNextFileName
1 parent 9139426 commit c7d9407Copy full SHA for c7d9407
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