From d42cf075f54e710dcbf9249decdae376b230b656 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Sun, 22 Apr 2012 13:49:37 -0700 Subject: [PATCH] Fixed bug in handling of extern (x) declarations --- parser.d | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/parser.d b/parser.d index 482ea1e..5a99ffb 100644 --- a/parser.d +++ b/parser.d @@ -218,6 +218,7 @@ string parseTypeDeclaration(const Token[] tokens, ref size_t index) break buildingType; } } + stderr.writeln("type = ", type); return type; } @@ -275,25 +276,26 @@ Module parseModule(const Token[] tokens, string protection = "public", string[] else if (tokens[index] == TokenType.assign) tokens.skipBlockStatement(index); break; + case TokenType.tDeprecated: + case TokenType.tNothrow: + case TokenType.tOverride: + case TokenType.tSynchronized: case TokenType.atDisable: case TokenType.atProperty: case TokenType.atSafe: case TokenType.atSystem: case TokenType.tAbstract: - case TokenType.tConst: - case TokenType.tDeprecated: - case TokenType.tExtern: case TokenType.tFinal: case TokenType.t__gshared: + case TokenType.tStatic: + localAttributes ~= tokens[index++].value; + break; + case TokenType.tConst: case TokenType.tImmutable: case TokenType.tInout: - case TokenType.tNothrow: - case TokenType.tOverride: case TokenType.tPure: case TokenType.tScope: case TokenType.tShared: - case TokenType.tStatic: - case TokenType.tSynchronized: auto tmp = tokens[index++].value; if (tokens[index] == TokenType.lParen) type = tmp ~ parenContent(tokens, index); @@ -302,10 +304,10 @@ Module parseModule(const Token[] tokens, string protection = "public", string[] index++; attributes ~= tmp; } - else - localAttributes ~= tmp; + localAttributes ~= tmp; break; case TokenType.tAlign: + case TokenType.tExtern: string attribute = tokens[index++].value; if (tokens[index] == TokenType.lParen) attribute ~= parenContent(tokens, index);