Changeset f6f7b52 for src


Ignore:
Timestamp:
Jan 16, 2025, 1:27:27 PM (4 days ago)
Author:
kyoung <lseo@…>
Branches:
master
Children:
9c65169
Parents:
3b21c96
git-author:
kyoung <lseo@…> (01/15/25 22:56:36)
git-committer:
kyoung <lseo@…> (01/16/25 13:27:27)
Message:

fixed a parser bug to generate correct ast for waitfor.

added a test program to check if we are respecting waitfor lexical priority.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/StatementNode.cpp

    r3b21c96 rf6f7b52  
    1010// Author           : Rodolfo G. Esteves
    1111// Created On       : Sat May 16 14:59:41 2015
    12 // Last Modified By : Peter A. Buhr
    13 // Last Modified On : Mon Sep 23 22:50:35 2024
    14 // Update Count     : 432
     12// Last Modified By : Kyoung Seo
     13// Last Modified On : Thd Jan 16 13:05:00 2025
     14// Update Count     : 433
    1515//
    1616
     
    351351        delete targetExpr;
    352352
    353         existing->clauses.insert( existing->clauses.begin(), clause );
     353        existing->clauses.insert( existing->clauses.end(), clause );
    354354
    355355        return existing;
Note: See TracChangeset for help on using the changeset viewer.