1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00

chore: add some traits to ast.rs (#7479)

This commit is contained in:
Kitson Kelly 2020-09-15 07:59:49 +10:00 committed by GitHub
parent a65bcadcf2
commit 5248a711ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,7 +47,7 @@ type Result<V> = result::Result<V, ErrBox>;
static TARGET: JscTarget = JscTarget::Es2020;
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Location {
pub filename: String,
pub line: usize,
@ -204,6 +204,7 @@ impl Default for TranspileOptions {
/// A logical structure to hold the value of a parsed module for further
/// processing.
#[derive(Clone)]
pub struct ParsedModule {
comments: SingleThreadedComments,
leading_comments: Vec<Comment>,
@ -211,6 +212,16 @@ pub struct ParsedModule {
source_map: Rc<SourceMap>,
}
impl fmt::Debug for ParsedModule {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("ParsedModule")
.field("comments", &self.comments)
.field("leading_comments", &self.leading_comments)
.field("module", &self.module)
.finish()
}
}
impl ParsedModule {
/// Return a vector of dependencies for the module.
pub fn analyze_dependencies(&self) -> Vec<DependencyDescriptor> {