fix empty unnamed arg assignment start

This commit is contained in:
LenAnderson 2024-05-18 14:48:50 -04:00
parent 87cc28ae28
commit e49317a73c
1 changed files with 1 additions and 0 deletions

View File

@ -829,6 +829,7 @@ export class SlashCommandParser {
assignment.start = this.index;
value = '';
}
assignment.start = this.index;
assignment.value = this.parseClosure();
assignment.end = this.index;
listValues.push(assignment);