Skip to content

Commit

Permalink
Fix comment parsing between 2 steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Socolin committed Dec 1, 2023
1 parent 2ad2362 commit 20d3821
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,7 @@ private static bool AtScenarioEnd(PsiBuilder builder)
var i = 0;
while (builder.GetTokenType(i) == GherkinTokenTypes.TAG ||
builder.GetTokenType(i) == GherkinTokenTypes.WHITE_SPACE ||
builder.GetTokenType(i) == GherkinTokenTypes.COMMENT ||
builder.GetTokenType(i) == GherkinTokenTypes.NEW_LINE)
i++;

Expand Down

0 comments on commit 20d3821

Please sign in to comment.