Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 5bbf9c7

Browse files
committed
Update tokenizer to ignore whitespaces when parsing preprocessor directives. Fix #120.
Fix issues regarding the PP directives AC.
1 parent d55cbf1 commit 5bbf9c7

File tree

4 files changed

+378
-383
lines changed

4 files changed

+378
-383
lines changed

SourcepawnCondenser/SourcepawnCondenser/CondenserFunctions/SMPPDirectiveConsumer.cs

+19-21
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,29 @@ public partial class Condenser
77
{
88
private int ConsumeSMPPDirective()
99
{
10-
if (t[position].Value == "#define")
10+
if (t[position].Value != "#define" || position + 1 >= length ||
11+
t[position + 1].Kind != TokenKind.Identifier)
1112
{
12-
if ((position + 1) < length)
13+
return -1;
14+
}
15+
16+
def.Defines.Add(new SMDefine
17+
{
18+
Index = t[position].Index,
19+
Length = t[position + 1].Index - t[position].Index + t[position + 1].Length,
20+
File = FileName,
21+
Name = t[position + 1].Value
22+
});
23+
24+
for (var j = position + 1; j < length; ++j)
25+
{
26+
if (t[j].Kind == TokenKind.EOL)
1327
{
14-
if (t[position + 1].Kind == TokenKind.Identifier)
15-
{
16-
def.Defines.Add(new SMDefine()
17-
{
18-
Index = t[position].Index,
19-
Length = t[position + 1].Index - t[position].Index + t[position + 1].Length,
20-
File = FileName,
21-
Name = t[position + 1].Value
22-
});
23-
for (var j = position + 1; j < length; ++j)
24-
{
25-
if (t[j].Kind == TokenKind.EOL)
26-
{
27-
return j;
28-
}
29-
}
30-
return position + 1;
31-
}
28+
return j;
3229
}
3330
}
34-
return -1;
31+
32+
return position + 1;
3533
}
3634
}
3735
}

0 commit comments

Comments
 (0)