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

use deno_core::include_js_files;
use deno_core::Extension;

/// Load and execute the javascript code.
pub fn init() -> Extension {
  Extension::builder(env!("CARGO_PKG_NAME"))
    .js(include_js_files!(
      prefix "internal:ext/webidl",
      "00_webidl.js",
    ))
    .build()
}