Coverage Report

Created: 2025-09-04 06:34

/src/hermes/lib/VM/JSLib/JSLibStorage.cpp
Line
Count
Source
1
/*
2
 * Copyright (c) Meta Platforms, Inc. and affiliates.
3
 *
4
 * This source code is licensed under the MIT license found in the
5
 * LICENSE file in the root directory of this source tree.
6
 */
7
8
#include "hermes/VM/JSLib/JSLibStorage.h"
9
10
#include <memory>
11
12
#include "hermes/VM/JSLib.h"
13
14
namespace hermes {
15
namespace vm {
16
17
47
std::unique_ptr<JSLibStorage> createJSLibStorage() {
18
47
  return std::make_unique<JSLibStorage>();
19
47
}
20
21
47
JSLibStorage::JSLibStorage() = default;
22
47
JSLibStorage::~JSLibStorage() = default;
23
24
} // namespace vm
25
} // namespace hermes