Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    rdaa4cc1 rc1b0b8f  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Jul 26 14:09:30 2024
    13 // Update Count     : 6733
     12// Last Modified On : Thu Jul 25 15:19:32 2024
     13// Update Count     : 6730
    1414//
    1515
     
    11141114argument_expression:
    11151115        '?'                                                                                                     // CFA, default parameter
    1116                 // { SemanticError( yylloc, "Argument to default parameter is currently unimplemented." ); $$ = nullptr; }
    1117                 { $$ = new ExpressionNode( build_constantInteger( yylloc, *new string( "2" ) ) ); }
     1116                { SemanticError( yylloc, "Argument to default parameter is currently unimplemented." ); $$ = nullptr; }
     1117                // { $$ = new ExpressionNode( build_constantInteger( *new string( "2" ) ) ); }
    11181118        | '?' identifier '=' assignment_expression                      // CFA, keyword argument
    1119                 // { SemanticError( yylloc, "keyword argument is currently unimplemented." ); $$ = nullptr; }
    1120                 { $$ = $4; }
     1119                { SemanticError( yylloc, "keyword argument is currently unimplemented." ); $$ = nullptr; }
    11211120        | assignment_expression
    11221121        ;
     
    35483547                { $$ = DeclarationNode::newName( $1 ); }
    35493548        | '?' identifier
    3550                 // { SemanticError( yylloc, "keyword parameter is currently unimplemented." ); $$ = nullptr; }
    3551                 { $$ = DeclarationNode::newName( $2 ); }
     3549                { SemanticError( yylloc, "keyword parameter is currently unimplemented." ); $$ = nullptr; }
    35523550        | '(' paren_identifier ')'                                                      // redundant parenthesis
    35533551                { $$ = $2; }
Note: See TracChangeset for help on using the changeset viewer.