refactor: move WebSocket API to an op_crate (#9026)

This commit is contained in:
Luca Casonato 2021-01-06 16:57:28 +01:00 committed by GitHub
parent 1959aca2a9
commit 2e18fcebcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 609 additions and 437 deletions

View file

@ -275,10 +275,11 @@ fn print_cache_info(
fn get_types(unstable: bool) -> String {
let mut types = format!(
"{}\n{}\n{}\n{}\n{}",
"{}\n{}\n{}\n{}\n{}\n{}",
crate::tsc::DENO_NS_LIB,
crate::tsc::DENO_WEB_LIB,
crate::tsc::DENO_FETCH_LIB,
crate::tsc::DENO_WEBSOCKET_LIB,
crate::tsc::SHARED_GLOBALS_LIB,
crate::tsc::WINDOW_LIB,
);