chore: update deno_* crates (#12020)

This commit is contained in:
Kitson Kelly 2021-09-13 10:06:36 +10:00 committed by GitHub
parent 2cc1577d28
commit a442821d97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 41 additions and 45 deletions

View file

@ -1,4 +1,3 @@
use deno_ast::swc::common::BytePos;
use deno_ast::Diagnostic;
use deno_ast::MediaType;
use deno_ast::ParsedSource;
@ -36,7 +35,7 @@ impl DocumentSource {
inner: Arc::new(DocumentSourceInner {
specifier: specifier.clone(),
media_type,
text_info: SourceTextInfo::new(BytePos(0), text),
text_info: SourceTextInfo::new(text),
parsed_module: OnceCell::new(),
line_index,
}),