@@ -428,14 +428,14 @@ aggregate_init_element(A) ::= expression(B).
428428aggregate_init_body (A) ::= aggregate_init_element(B).
429429{
430430 A = LISTcreate ();
431- LISTadd (A, (Generic)B);
431+ LISTadd_last (A, (Generic)B);
432432}
433433aggregate_init_body (A) ::= aggregate_init_element(B) TOK_COLON expression(C).
434434{
435435 A = LISTcreate ();
436- LISTadd (A, (Generic)B);
436+ LISTadd_last (A, (Generic)B);
437437
438- LISTadd (A, (Generic)C);
438+ LISTadd_last (A, (Generic)C);
439439
440440 B->type ->u .type ->body ->flags .repeat = 1 ;
441441}
@@ -1416,7 +1416,7 @@ reference_clause ::= TOK_REFERENCE TOK_FROM TOK_IDENTIFIER(A) semicolon.
14161416 CURRENT_SCHEMA->ref_schemas = LISTcreate ();
14171417 }
14181418
1419- LISTadd (CURRENT_SCHEMA->ref_schemas , (Generic)A.symbol );
1419+ LISTadd_last (CURRENT_SCHEMA->ref_schemas , (Generic)A.symbol );
14201420}
14211421reference_clause (A) ::= reference_head(B) parened_rename_list semicolon.
14221422{
@@ -1435,7 +1435,7 @@ use_clause ::= TOK_USE TOK_FROM TOK_IDENTIFIER(A) semicolon.
14351435 CURRENT_SCHEMA->use_schemas = LISTcreate ();
14361436 }
14371437
1438- LISTadd (CURRENT_SCHEMA->use_schemas , (Generic)A.symbol );
1438+ LISTadd_last (CURRENT_SCHEMA->use_schemas , (Generic)A.symbol );
14391439}
14401440use_clause (A) ::= use_head(B) parened_rename_list semicolon.
14411441{
@@ -1691,7 +1691,7 @@ defined_type(A) ::= TOK_IDENTIFIER(B).
16911691defined_type_list (A) ::= defined_type(B).
16921692{
16931693 A = LISTcreate ();
1694- LISTadd (A, (Generic)B);
1694+ LISTadd_last (A, (Generic)B);
16951695
16961696}
16971697defined_type_list (A) ::= defined_type_list(B) TOK_COMMA defined_type(C).
@@ -1969,7 +1969,7 @@ rule_formal_parameter(A) ::= TOK_IDENTIFIER(B).
19691969rule_formal_parameter_list (A) ::= rule_formal_parameter(B).
19701970{
19711971 A = LISTcreate ();
1972- LISTadd (A, (Generic)B);
1972+ LISTadd_last (A, (Generic)B);
19731973}
19741974rule_formal_parameter_list (A) ::= rule_formal_parameter_list(B) TOK_COMMA
19751975 rule_formal_parameter(C).
@@ -2426,7 +2426,7 @@ where_clause(A) ::= TOK_IDENTIFIER(B) TOK_COLON expression(C) semicolon.
24262426where_clause_list (A) ::= where_clause(B).
24272427{
24282428 A = LISTcreate ();
2429- LISTadd (A, (Generic)B);
2429+ LISTadd_last (A, (Generic)B);
24302430}
24312431where_clause_list (A) ::= where_clause_list(B) where_clause(C).
24322432{
0 commit comments