mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 13:39:22 +03:00
More Sieve quotedstring handling fixes
This commit is contained in:
parent
e7608821da
commit
f6b53ad497
32 changed files with 235 additions and 158 deletions
|
|
@ -41,18 +41,21 @@ export class ErrorCommand extends ControlCommand
|
|||
constructor()
|
||||
{
|
||||
super();
|
||||
this.message = new GrammarQuotedString;
|
||||
this._message = new GrammarQuotedString;
|
||||
}
|
||||
|
||||
get require() { return 'ihave'; }
|
||||
|
||||
get message() { return this._message.value; }
|
||||
set message(v) { this._message.value = v; }
|
||||
|
||||
toString()
|
||||
{
|
||||
return 'error ' + this.message + ';';
|
||||
return 'error ' + this._message + ';';
|
||||
}
|
||||
|
||||
pushArguments(args)
|
||||
{
|
||||
this.message = args.pop();
|
||||
this._message = args.pop();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue