mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-22 23:55:12 +00:00
LibJS: Replace boolean without_side_effects parameters with an enum
This commit is contained in:
committed by
Andreas Kling
parent
864beb0bd5
commit
dcb55db99b
@@ -20,7 +20,7 @@ class DebuggerGlobalJSObject final
|
||||
public:
|
||||
DebuggerGlobalJSObject();
|
||||
|
||||
JS::Value get(const JS::PropertyName& name, JS::Value receiver, bool without_side_effects) const override;
|
||||
JS::Value get(const JS::PropertyName& name, JS::Value receiver, JS::AllowSideEffects = JS::AllowSideEffects::Yes) const override;
|
||||
bool put(const JS::PropertyName& name, JS::Value value, JS::Value receiver) override;
|
||||
|
||||
Optional<JS::Value> debugger_to_js(const Debug::DebugInfo::VariableInfo&) const;
|
||||
|
||||
Reference in New Issue
Block a user