diff options
author | Aleksey Kladov <[email protected]> | 2019-01-26 08:51:36 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-26 08:51:36 +0000 |
commit | 9457b1f0e64d38e7dc24d8c66a52ffef759d4dbf (patch) | |
tree | a9703f8d4338d3b0be55b170ae4fff3d8441ab9d /crates/ra_hir/src/ty | |
parent | ac757e114e9dcbc70600803dd4adc4f99ecde78e (diff) |
rename source_file -> parse
Diffstat (limited to 'crates/ra_hir/src/ty')
-rw-r--r-- | crates/ra_hir/src/ty/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir/src/ty/tests.rs b/crates/ra_hir/src/ty/tests.rs index 0eb4da06e..e0b0689f8 100644 --- a/crates/ra_hir/src/ty/tests.rs +++ b/crates/ra_hir/src/ty/tests.rs | |||
@@ -547,7 +547,7 @@ fn quux() { | |||
547 | 547 | ||
548 | fn infer(content: &str) -> String { | 548 | fn infer(content: &str) -> String { |
549 | let (db, _, file_id) = MockDatabase::with_single_file(content); | 549 | let (db, _, file_id) = MockDatabase::with_single_file(content); |
550 | let source_file = db.source_file(file_id); | 550 | let source_file = db.parse(file_id); |
551 | let mut acc = String::new(); | 551 | let mut acc = String::new(); |
552 | for fn_def in source_file | 552 | for fn_def in source_file |
553 | .syntax() | 553 | .syntax() |