mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 20:49:20 +03:00
Added: rfc5233
Activate: comparator Bugfix: StringList must use .toString() Bugfix: redirect command Bugfix: MultiLine
This commit is contained in:
parent
3566f4a538
commit
73e26d388a
12 changed files with 86 additions and 50 deletions
|
|
@ -19,7 +19,7 @@ class Flag extends Grammar.Command
|
|||
|
||||
toString()
|
||||
{
|
||||
return this.identifier + ' ' + this._variablename + ' ' + this.list_of_flags + ';';
|
||||
return this.identifier + ' ' + this._variablename + ' ' + this.list_of_flags.toString() + ';';
|
||||
}
|
||||
|
||||
get variablename()
|
||||
|
|
@ -86,9 +86,9 @@ class HasFlag extends Grammar.Test
|
|||
{
|
||||
return 'hasflag'
|
||||
+ ' ' + this.match_type
|
||||
// + ' ' + this.comparator
|
||||
+ ' ' + this.variable_list
|
||||
+ ' ' + this.list_of_flags;
|
||||
+ (this.comparator ? ' :comparator ' + this.comparator : '')
|
||||
+ ' ' + this.variable_list.toString()
|
||||
+ ' ' + this.list_of_flags.toString();
|
||||
}
|
||||
|
||||
pushArguments(args)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue