mirror of
https://github.com/denoland/deno.git
synced 2025-08-01 09:32:28 +00:00
Use async at places, use &self instead of self: &Self (#3594)
This commit is contained in:
parent
70b1be6ff4
commit
9f6bab6010
14 changed files with 160 additions and 197 deletions
|
@ -15,7 +15,7 @@ pub struct JsonCompiler {}
|
|||
|
||||
impl JsonCompiler {
|
||||
pub fn compile_async(
|
||||
self: &Self,
|
||||
&self,
|
||||
source_file: &SourceFile,
|
||||
) -> Pin<Box<CompiledModuleFuture>> {
|
||||
let maybe_json_value: serde_json::Result<serde_json::Value> =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue