Improve sieve parser

This commit is contained in:
the-djmaze 2024-09-23 10:48:22 +02:00
parent 0a3a5f6d59
commit c773b852a1
11 changed files with 124 additions and 106 deletions

View file

@ -230,6 +230,7 @@ export class HeaderTest extends TestCommand
constructor()
{
super();
this.match_type = ':is';
this.address_part = ':all';
this.header_names = new GrammarStringList;
this.key_list = new GrammarStringList;
@ -316,11 +317,6 @@ export class NotTest extends TestCommand
{
return 'not ' + this.test;
}
pushArguments()
{
throw 'No arguments';
}
}
/**