Images 💾

Last commit ⭐

commit 75ae368896d4b2b139dd17d59c7f259824a3fb8d
Author:     Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
AuthorDate: Tue Jul 4 22:49:07 2023 +0300
Commit:     Andreas Kling <kling@serenityos.org>
CommitDate: Wed Jul 5 06:05:22 2023 +0200

    LibJS: Propagate "contains await" flag to parent scope in ScopePusher
    
    The flag indicating the presence of an await expression should be
    passed up to the parent scope until the nearest function scope is
    reached. This resolves several problems related to identifying
    top-level awaits, which are currently not recognized correctly
    when used within a nested scope.