diff options
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/VM.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/VM.h b/Userland/Libraries/LibJS/Runtime/VM.h index 78501e0b10..7cbac330fc 100644 --- a/Userland/Libraries/LibJS/Runtime/VM.h +++ b/Userland/Libraries/LibJS/Runtime/VM.h @@ -39,7 +39,7 @@ struct ScopeFrame { }; struct CallFrame { - const ASTNode* current_node; + const ASTNode* current_node { nullptr }; FlyString function_name; Value callee; Value this_value; |