0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/compilers/js.rs

26 lines
630 B
Rust
Raw Normal View History

2020-01-02 15:13:47 -05:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
use crate::compilers::CompiledModule;
use crate::compilers::CompiledModuleFuture;
use crate::file_fetcher::SourceFile;
2019-11-22 12:14:34 -05:00
use futures::future::FutureExt;
2019-11-16 19:17:47 -05:00
use std::pin::Pin;
use std::str;
pub struct JsCompiler {}
impl JsCompiler {
pub fn compile_async(
&self,
source_file: SourceFile,
2019-11-16 19:17:47 -05:00
) -> Pin<Box<CompiledModuleFuture>> {
let module = CompiledModule {
code: str::from_utf8(&source_file.source_code)
.unwrap()
.to_string(),
name: source_file.url.to_string(),
};
2019-11-16 19:17:47 -05:00
futures::future::ok(module).boxed()
}
}