mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
refactor(core): SourceMapGetter doesn't need Send + Sync (#14808)
This commit is contained in:
parent
9385a91312
commit
99f525a66c
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ pub use sourcemap::SourceMap;
|
|||
use std::collections::HashMap;
|
||||
use std::str;
|
||||
|
||||
pub trait SourceMapGetter: Sync + Send {
|
||||
pub trait SourceMapGetter {
|
||||
/// Returns the raw source map file.
|
||||
fn get_source_map(&self, file_name: &str) -> Option<Vec<u8>>;
|
||||
fn get_source_line(
|
||||
|
|
Loading…
Reference in a new issue