From 42b1b36eb436eb6ac0c44ce7729e384955e8412f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 28 Nov 2020 17:36:38 +0100 Subject: [PATCH] LibJS: Run clang-format on WithScope.h --- Libraries/LibJS/Runtime/WithScope.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibJS/Runtime/WithScope.h b/Libraries/LibJS/Runtime/WithScope.h index ef6072994d..b74542cb64 100644 --- a/Libraries/LibJS/Runtime/WithScope.h +++ b/Libraries/LibJS/Runtime/WithScope.h @@ -38,7 +38,7 @@ public: virtual Optional get_from_scope(const FlyString&) const override; virtual void put_to_scope(const FlyString&, Variable) override; - virtual bool has_this_binding() const override; + virtual bool has_this_binding() const override; virtual Value get_this_binding(GlobalObject&) const override; private: