File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -671,7 +671,7 @@ Opt_Instruction_List:
671
671
}
672
672
;
673
673
674
- // Structured Text grammar
674
+ // Statement List grammar
675
675
Instruction_List :
676
676
Oom_IL_Instruction
677
677
;
@@ -930,12 +930,12 @@ IL_Simple_Operator:
930
930
{
931
931
$$ = $1 ;
932
932
parser_stack ($$).id(ID_statement_list_xor);
933
- }
933
+ }
934
934
| TOK_XOR_NOT
935
935
{
936
936
$$ = $1 ;
937
937
parser_stack ($$).id(ID_statement_list_xor_not);
938
- }
938
+ }
939
939
| TOK_AND_NESTED
940
940
{
941
941
$$ = $1 ;
@@ -945,22 +945,22 @@ IL_Simple_Operator:
945
945
{
946
946
$$ = $1 ;
947
947
parser_stack ($$).id(ID_statement_list_and_not_nested);
948
- }
948
+ }
949
949
| TOK_OR_NESTED
950
950
{
951
951
$$ = $1 ;
952
952
parser_stack ($$).id(ID_statement_list_or_nested);
953
- }
953
+ }
954
954
| TOK_OR_NOT_NESTED
955
955
{
956
956
$$ = $1 ;
957
957
parser_stack ($$).id(ID_statement_list_or_not_nested);
958
- }
958
+ }
959
959
| TOK_XOR_NESTED
960
960
{
961
961
$$ = $1 ;
962
962
parser_stack ($$).id(ID_statement_list_xor_nested);
963
- }
963
+ }
964
964
| TOK_XOR_NOT_NESTED
965
965
{
966
966
$$ = $1 ;
@@ -970,7 +970,7 @@ IL_Simple_Operator:
970
970
{
971
971
$$ = $1 ;
972
972
parser_stack ($$).id(ID_statement_list_nesting_closed);
973
- }
973
+ }
974
974
| TOK_ASSIGN
975
975
{
976
976
$$ = $1 ;
@@ -985,7 +985,7 @@ IL_Simple_Operator:
985
985
{
986
986
$$ = $1 ;
987
987
parser_stack ($$).id(ID_statement_list_clr_rlo);
988
- }
988
+ }
989
989
| TOK_SET
990
990
{
991
991
$$ = $1 ;
@@ -995,7 +995,7 @@ IL_Simple_Operator:
995
995
{
996
996
$$ = $1 ;
997
997
parser_stack ($$).id(ID_statement_list_reset);
998
- }
998
+ }
999
999
| TOK_NOT
1000
1000
{
1001
1001
$$ = $1 ;
You can’t perform that action at this time.
0 commit comments