Extract call_info and completion into separate crates

This commit is contained in:
Igor Aleksanov 2020-10-18 13:09:00 +03:00
parent 2067a410f3
commit 9e7c952bbd
34 changed files with 336 additions and 226 deletions

View file

@ -3,14 +3,12 @@
use std::{collections::BTreeMap, convert::TryFrom};
use ast::{HasQuotes, HasStringValue};
use call_info::ActiveParameter;
use hir::Semantics;
use itertools::Itertools;
use syntax::{ast, AstToken, SyntaxNode, SyntaxToken, TextRange, TextSize};
use crate::{
call_info::ActiveParameter, Analysis, Highlight, HighlightModifier, HighlightTag,
HighlightedRange, RootDatabase,
};
use crate::{Analysis, Highlight, HighlightModifier, HighlightTag, HighlightedRange, RootDatabase};
use super::HighlightedRangeStack;