LibJS: Put CanonicalIndex in the JS namespace

This commit is contained in:
Timothy Flynn 2022-12-07 08:06:02 -05:00 committed by Linus Groh
parent 8f1f794bbd
commit 8f46cb83c7
Notes: sideshowbarker 2024-07-17 05:02:42 +09:00

View file

@ -8,6 +8,8 @@
#include <AK/Types.h>
namespace JS {
class CanonicalIndex {
public:
enum class Type {
@ -35,3 +37,5 @@ private:
Type m_type;
u32 m_index;
};
}