Skip to content

Commit

Permalink
Convert some tabs to newlines in the grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
scrhartley committed Mar 26, 2024
1 parent 5035e07 commit 7c802f4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions freemarker-core/src/main/javacc/freemarker/core/FTL.jj
Original file line number Diff line number Diff line change
Expand Up @@ -3884,17 +3884,17 @@ SwitchBlock Switch() :
}
{
(
start = <SWITCH>
switchExp = Expression()
<DIRECTIVE_END>
start = <SWITCH>
switchExp = Expression()
<DIRECTIVE_END>
[ ignoredSectionBeforeFirstCase = WhitespaceAndComments() ]
)
{
breakableDirectiveNesting++;
switchBlock = new SwitchBlock(switchExp, ignoredSectionBeforeFirstCase);
}
[
(
(
(
caseIns = Case()
{
Expand Down Expand Up @@ -3938,8 +3938,8 @@ SwitchBlock Switch() :
breakableDirectiveNesting++;
}
)
)
[<STATIC_TEXT_WS>]
)
[<STATIC_TEXT_WS>]
]
end = <END_SWITCH>
{
Expand Down

0 comments on commit 7c802f4

Please sign in to comment.