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

use deno_core::JsRuntime;

/// Load and execute the javascript code.
pub fn init(isolate: &mut JsRuntime) {
  let files = vec![(
    "deno:op_crates/webidl/00_webidl.js",
    include_str!("00_webidl.js"),
  )];
  for (url, source_code) in files {
    isolate.execute(url, source_code).unwrap();
  }
}