summaryrefslogtreecommitdiff
path: root/op_crates/webidl/lib.rs
blob: a1a404dbdf3076862aadfd3310c8459becbad921 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.

use deno_core::Extension;

/// Load and execute the javascript code.
pub fn init() -> Extension {
  Extension::pure_js(vec![(
    "deno:op_crates/webidl/00_webidl.js",
    include_str!("00_webidl.js"),
  )])
}