mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 819509 - Reduce possible tokenizer lookahead. r=njn
--HG-- extra : rebase_source : 85362ff2f4703c23cb5a46cef5fa837a4d8f8240
This commit is contained in:
parent
1b37e03c8c
commit
7044ad9b09
@ -460,8 +460,9 @@ class TokenStream
|
||||
PARA_SEPARATOR = 0x2029
|
||||
};
|
||||
|
||||
static const size_t ntokens = 4; /* 1 current + 3 lookahead, rounded
|
||||
static const size_t ntokens = 4; /* 1 current + 2 lookahead, rounded
|
||||
to power of 2 to avoid divmod by 3 */
|
||||
static const unsigned maxLookahead = 2;
|
||||
static const unsigned ntokensMask = ntokens - 1;
|
||||
|
||||
public:
|
||||
@ -604,7 +605,7 @@ class TokenStream
|
||||
|
||||
TokenKind peekToken() {
|
||||
if (lookahead != 0) {
|
||||
JS_ASSERT(lookahead <= 2);
|
||||
JS_ASSERT(lookahead < maxLookahead);
|
||||
return tokens[(cursor + lookahead) & ntokensMask].type;
|
||||
}
|
||||
TokenKind tt = getTokenInternal();
|
||||
@ -622,7 +623,7 @@ class TokenStream
|
||||
return TOK_EOL;
|
||||
|
||||
if (lookahead != 0) {
|
||||
JS_ASSERT(lookahead <= 2);
|
||||
JS_ASSERT(lookahead < maxLookahead);
|
||||
return tokens[(cursor + lookahead) & ntokensMask].type;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user