Skip to content

Commit 9674bee

Browse files
committed
Skip alignas specifier
1 parent 84976a0 commit 9674bee

File tree

5 files changed

+43
-5
lines changed

5 files changed

+43
-5
lines changed

generator/parser/lexer.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -1426,6 +1426,18 @@ void Lexer::scanKeyword7()
14261426
{
14271427
switch (*cursor)
14281428
{
1429+
case 'a':
1430+
if (*(cursor + 1) == 'l' &&
1431+
*(cursor + 2) == 'i' &&
1432+
*(cursor + 3) == 'g' &&
1433+
*(cursor + 4) == 'n' &&
1434+
*(cursor + 5) == 'a' &&
1435+
*(cursor + 6) == 's')
1436+
{
1437+
token_stream[(int)index++].kind = Token_alignas;
1438+
return;
1439+
}
1440+
break;
14291441
case 'd':
14301442
if (*(cursor + 1) == 'e' &&
14311443
*(cursor + 2) == 'f' &&

generator/parser/parser.cpp

+28-5
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,24 @@ void Parser::keepTrackDebug()
230230
#endif
231231
}
232232

233+
bool Parser::skipAlignas()
234+
{
235+
// we are currently not interested in alignas, so we just skip it
236+
if (token_stream.lookAhead() == Token_alignas)
237+
{
238+
nextToken();
239+
if (token_stream.lookAhead() == '(')
240+
{
241+
if (skip('(', ')'))
242+
{
243+
nextToken();
244+
}
245+
}
246+
return true;
247+
}
248+
return false;
249+
}
250+
233251
bool Parser::skipAttributes()
234252
{
235253
bool any = false;
@@ -422,7 +440,10 @@ bool Parser::parseName(NameAST *&node, bool acceptTemplateId)
422440
std::size_t start = token_stream.cursor();
423441

424442
WinDeclSpecAST *winDeclSpec = 0;
425-
parseWinDeclSpec(winDeclSpec);
443+
while (skipAlignas() || (!winDeclSpec && parseWinDeclSpec(winDeclSpec)))
444+
{
445+
;
446+
}
426447

427448
NameAST *ast = CreateNode<NameAST>(_M_pool);
428449

@@ -2054,9 +2075,10 @@ bool Parser::parseClassSpecifier(TypeSpecifierAST *&node)
20542075
nextToken();
20552076

20562077
WinDeclSpecAST *winDeclSpec = 0;
2057-
parseWinDeclSpec(winDeclSpec);
2058-
2059-
skipAttributes();
2078+
while (skipAttributes() || skipAlignas() || (!winDeclSpec && parseWinDeclSpec(winDeclSpec)))
2079+
{
2080+
;
2081+
}
20602082

20612083
while (token_stream.lookAhead() == Token_identifier
20622084
&& token_stream.lookAhead(1) == Token_identifier)
@@ -3359,7 +3381,8 @@ bool Parser::parseDeclarationInternal(DeclarationAST *&node)
33593381
// so just consume then until no specifiers are left.
33603382
// Luckily the parse methods can be called multiple times, they just add to existing nodes.
33613383
while (skipAttributes() ||
3362-
parseWinDeclSpec(winDeclSpec) ||
3384+
skipAlignas() ||
3385+
(!winDeclSpec && parseWinDeclSpec(winDeclSpec)) ||
33633386
parseCvQualify(cv) ||
33643387
parseFunctionSpecifier(funSpec) ||
33653388
parseStorageClassSpecifier(storageSpec))

generator/parser/parser.h

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ class Parser
186186
bool parseQ_ENUMS(DeclarationAST *&node);
187187
bool parseQ_ENUM(DeclarationAST *&node);
188188

189+
bool skipAlignas();
189190
bool skipAttributes();
190191
bool skipUntil(int token);
191192
bool skipUntilDeclaration();

generator/parser/tokens.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ static char const * const _S_token_names[] = {
5151
"Q_PROPERTY",
5252
"__attribute__",
5353
"__typeof",
54+
"alignas",
5455
"and",
5556
"and_eq",
5657
"arrow",

generator/parser/tokens.h

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ enum TOKEN_KIND
5252
Token_Q_PROPERTY,
5353
Token___attribute__,
5454
Token___typeof,
55+
Token_alignas,
5556
Token_and,
5657
Token_and_eq,
5758
Token_arrow,

0 commit comments

Comments
 (0)