serenity/Userland/Libraries/LibJS/Runtime/Reference.h
Idan Horowitz 064ed8279e LibJS: Support deleting local variables with operator delete
To make this cleaner i also moved the logic into Reference::delete_.
2021-06-08 15:31:46 +01:00

82 lines
1.8 KiB
C++

/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <LibJS/Runtime/PropertyName.h>
#include <LibJS/Runtime/Value.h>
namespace JS {
class Reference {
public:
Reference() { }
Reference(Value base, const PropertyName& name, bool strict = false)
: m_base(base)
, m_name(name)
, m_strict(strict)
{
}
enum LocalVariableTag { LocalVariable };
Reference(LocalVariableTag, const FlyString& name, bool strict = false)
: m_base(js_null())
, m_name(name)
, m_strict(strict)
, m_local_variable(true)
{
}
enum GlobalVariableTag { GlobalVariable };
Reference(GlobalVariableTag, const FlyString& name, bool strict = false)
: m_base(js_null())
, m_name(name)
, m_strict(strict)
, m_global_variable(true)
{
}
Value base() const { return m_base; }
const PropertyName& name() const { return m_name; }
bool is_strict() const { return m_strict; }
bool is_unresolvable() const { return m_base.is_empty(); }
bool is_property() const
{
return m_base.is_object() || has_primitive_base();
}
bool has_primitive_base() const
{
return m_base.is_boolean() || m_base.is_string() || m_base.is_number();
}
bool is_local_variable() const
{
return m_local_variable;
}
bool is_global_variable() const
{
return m_global_variable;
}
void put(GlobalObject&, Value);
Value get(GlobalObject&);
bool delete_(GlobalObject&);
private:
void throw_reference_error(GlobalObject&);
Value m_base;
PropertyName m_name;
bool m_strict { false };
bool m_local_variable { false };
bool m_global_variable { false };
};
}