chromium/third_party/blink/renderer/core/script/pending_import_map.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/script/pending_import_map.h"

#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_core.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/script/import_map.h"
#include "third_party/blink/renderer/core/script/modulator.h"
#include "third_party/blink/renderer/core/script/script_element_base.h"
#include "third_party/blink/renderer/platform/bindings/script_state.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"

namespace blink {

PendingImportMap* PendingImportMap::CreateInline(ScriptElementBase& element,
                                                 const String& import_map_text,
                                                 const KURL& base_url) {}

PendingImportMap::PendingImportMap(
    ScriptElementBase& element,
    ImportMap* import_map,
    std::optional<ImportMapError> error_to_rethrow,
    const ExecutionContext& original_context)
    :{}

// <specdef
// href="https://html.spec.whatwg.org/C#register-an-import-map"> This is
// parallel to PendingScript::ExecuteScriptBlock().
void PendingImportMap::RegisterImportMap() {}

void PendingImportMap::Trace(Visitor* visitor) const {}

}  // namespace blink