Changeset 2501ae5


Ignore:
Timestamp:
Jan 11, 2021, 2:22:31 PM (3 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
b66d14a
Parents:
64aeca0
Message:

formatting, semantic error: otype declaration is currently unimplemented

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    r64aeca0 r2501ae5  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Jan 10 17:41:00 2021
    13 // Update Count     : 4625
     12// Last Modified On : Mon Jan 11 14:14:16 2021
     13// Update Count     : 4630
    1414//
    1515
     
    15451545        | cfa_function_declaration
    15461546        | type_declaring_list
     1547                { SemanticError( yylloc, "otype declaration is currently unimplemented." ); $$ = nullptr; }
    15471548        | trait_specifier
    15481549        ;
     
    24602461                { $$ = TypeDecl::Dtype; }
    24612462        | '*'
    2462                 { $$ = TypeDecl::Dtype; }
     2463                { $$ = TypeDecl::Dtype; }                                               // dtype + sized
    24632464        | ELLIPSIS
    24642465                { $$ = TypeDecl::Ttype; }
Note: See TracChangeset for help on using the changeset viewer.