More Sieve quotedstring handling fixes

This commit is contained in:
the-djmaze 2024-09-23 13:37:38 +02:00
parent e7608821da
commit f6b53ad497
32 changed files with 235 additions and 158 deletions

View file

@ -21,6 +21,12 @@ export class SetCommand extends ActionCommand
get require() { return 'variables'; }
get name() { return this._name.value; }
set name(str) { this._name.value = str; }
get value() { return this._value.value; }
set value(str) { this._value.value = str; }
toString()
{
return 'set'
@ -29,12 +35,6 @@ export class SetCommand extends ActionCommand
+ ' ' + this._value;
}
get name() { return this._name.value; }
set name(str) { this._name.value = str; }
get value() { return this._value.value; }
set value(str) { this._value.value = str; }
pushArguments(args)
{
[':lower', ':upper', ':lowerfirst', ':upperfirst', ':quotewildcard', ':length'].forEach(modifier => {