Skip to content

Commit afe0c7e

Browse files
MatWisetautschnig
authored andcommitted
Fix formatting of STL parser
Just small formatting changes.
1 parent 48b1d71 commit afe0c7e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/statement-list/parser.y

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ Opt_Instruction_List:
671671
}
672672
;
673673

674-
// Structured Text grammar
674+
// Statement List grammar
675675
Instruction_List:
676676
Oom_IL_Instruction
677677
;
@@ -930,12 +930,12 @@ IL_Simple_Operator:
930930
{
931931
$$ = $1;
932932
parser_stack($$).id(ID_statement_list_xor);
933-
}
933+
}
934934
| TOK_XOR_NOT
935935
{
936936
$$ = $1;
937937
parser_stack($$).id(ID_statement_list_xor_not);
938-
}
938+
}
939939
| TOK_AND_NESTED
940940
{
941941
$$ = $1;
@@ -945,22 +945,22 @@ IL_Simple_Operator:
945945
{
946946
$$ = $1;
947947
parser_stack($$).id(ID_statement_list_and_not_nested);
948-
}
948+
}
949949
| TOK_OR_NESTED
950950
{
951951
$$ = $1;
952952
parser_stack($$).id(ID_statement_list_or_nested);
953-
}
953+
}
954954
| TOK_OR_NOT_NESTED
955955
{
956956
$$ = $1;
957957
parser_stack($$).id(ID_statement_list_or_not_nested);
958-
}
958+
}
959959
| TOK_XOR_NESTED
960960
{
961961
$$ = $1;
962962
parser_stack($$).id(ID_statement_list_xor_nested);
963-
}
963+
}
964964
| TOK_XOR_NOT_NESTED
965965
{
966966
$$ = $1;
@@ -970,7 +970,7 @@ IL_Simple_Operator:
970970
{
971971
$$ = $1;
972972
parser_stack($$).id(ID_statement_list_nesting_closed);
973-
}
973+
}
974974
| TOK_ASSIGN
975975
{
976976
$$ = $1;
@@ -985,7 +985,7 @@ IL_Simple_Operator:
985985
{
986986
$$ = $1;
987987
parser_stack($$).id(ID_statement_list_clr_rlo);
988-
}
988+
}
989989
| TOK_SET
990990
{
991991
$$ = $1;
@@ -995,7 +995,7 @@ IL_Simple_Operator:
995995
{
996996
$$ = $1;
997997
parser_stack($$).id(ID_statement_list_reset);
998-
}
998+
}
999999
| TOK_NOT
10001000
{
10011001
$$ = $1;

0 commit comments

Comments
 (0)