Skip to main content
Module

std/node/v8.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.// Copyright Joyent and Node contributors. All rights reserved. MIT license.
import { notImplemented } from "./_utils.ts";
export function cachedDataVersionTag() { notImplemented();}export function getHeapCodeStatistics() { notImplemented();}export function getHeapSnapshot() { notImplemented();}export function getHeapSpaceStatistics() { notImplemented();}export function getHeapStatistics() { notImplemented();}export function setFlagsFromString() { notImplemented();}export function stopCoverage() { notImplemented();}export function takeCoverage() { notImplemented();}export function writeHeapSnapshot() { notImplemented();}export function serialize() { notImplemented();}export function deserialize() { notImplemented();}export class Serializer { constructor() { notImplemented(); }}export class Deserializer { constructor() { notImplemented(); }}export class DefaultSerializer { constructor() { notImplemented(); }}export class DefaultDeserializer { constructor() { notImplemented(); }}export const promiseHooks = { onInit() { notImplemented(); }, onSettled() { notImplemented(); }, onBefore() { notImplemented(); }, createHook() { notImplemented(); },};export default { cachedDataVersionTag, getHeapCodeStatistics, getHeapSnapshot, getHeapSpaceStatistics, getHeapStatistics, setFlagsFromString, stopCoverage, takeCoverage, writeHeapSnapshot, serialize, deserialize, Serializer, Deserializer, DefaultSerializer, DefaultDeserializer, promiseHooks,};