Images 💾

Last commit ⭐

commit 2bdc69c42c98467d8f114cb6b6b267b5d07851c3
Author:     Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
AuthorDate: Fri Jul 28 23:59:43 2023 +0200
Commit:     Andreas Kling <kling@serenityos.org>
CommitDate: Sat Jul 29 04:23:49 2023 +0200

    LibJS: Add caching of this value in ResolveThisBinding instruction
    
    Because "this" value cannot be changed during function execution it is
    safe to compute it once and then use for future access.
    
    This optimization makes ai-astar.js run 8% faster.