summaryrefslogtreecommitdiff
path: root/cli/ast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/ast.rs')
-rw-r--r--cli/ast.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/cli/ast.rs b/cli/ast.rs
index ef6468310..255155e7b 100644
--- a/cli/ast.rs
+++ b/cli/ast.rs
@@ -610,7 +610,9 @@ mod tests {
leading_comments: Vec::new(),
col: 0,
line: 1,
- specifier: "./test.ts".into()
+ specifier: "./test.ts".into(),
+ specifier_col: 21,
+ specifier_line: 1,
},
DependencyDescriptor {
kind: DependencyKind::Import,
@@ -618,7 +620,9 @@ mod tests {
leading_comments: Vec::new(),
col: 22,
line: 2,
- specifier: "./foo.ts".into()
+ specifier: "./foo.ts".into(),
+ specifier_col: 29,
+ specifier_line: 2,
}
]
);