mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 14:03:35 +00:00
9d3368f2c2
This PR touches a lot of parts. But the main changes are changing `hir_expand::Name` to be raw edition-dependently and only when necessary (unrelated to how the user originally wrote the identifier), and changing `is_keyword()` and `is_raw_identifier()` to be edition-aware (this was done in #17896, but the FIXMEs were fixed here). It is possible that I missed some cases, but most IDE parts should properly escape (or not escape) identifiers now. The rules of thumb are: - If we show the identifier to the user, its rawness should be determined by the edition of the edited crate. This is nice for IDE features, but really important for changes we insert to the source code. - For tests, I chose `Edition::CURRENT` (so we only have to (maybe) update tests when an edition becomes stable, to avoid churn). - For debugging tools (helper methods and logs), I used `Edition::LATEST`.
281 lines
8.9 KiB
Rust
281 lines
8.9 KiB
Rust
//! Display and pretty printing routines.
|
|
|
|
use std::fmt::{self, Write};
|
|
|
|
use hir_expand::mod_path::PathKind;
|
|
use intern::Interned;
|
|
use itertools::Itertools;
|
|
use span::Edition;
|
|
|
|
use crate::{
|
|
db::DefDatabase,
|
|
lang_item::LangItemTarget,
|
|
path::{GenericArg, GenericArgs, Path},
|
|
type_ref::{Mutability, TraitBoundModifier, TypeBound, TypeRef},
|
|
};
|
|
|
|
pub(crate) fn print_path(
|
|
db: &dyn DefDatabase,
|
|
path: &Path,
|
|
buf: &mut dyn Write,
|
|
edition: Edition,
|
|
) -> fmt::Result {
|
|
if let Path::LangItem(it, s) = path {
|
|
write!(buf, "builtin#lang(")?;
|
|
match *it {
|
|
LangItemTarget::ImplDef(it) => write!(buf, "{it:?}")?,
|
|
LangItemTarget::EnumId(it) => {
|
|
write!(buf, "{}", db.enum_data(it).name.display(db.upcast(), edition))?
|
|
}
|
|
LangItemTarget::Function(it) => {
|
|
write!(buf, "{}", db.function_data(it).name.display(db.upcast(), edition))?
|
|
}
|
|
LangItemTarget::Static(it) => {
|
|
write!(buf, "{}", db.static_data(it).name.display(db.upcast(), edition))?
|
|
}
|
|
LangItemTarget::Struct(it) => {
|
|
write!(buf, "{}", db.struct_data(it).name.display(db.upcast(), edition))?
|
|
}
|
|
LangItemTarget::Union(it) => {
|
|
write!(buf, "{}", db.union_data(it).name.display(db.upcast(), edition))?
|
|
}
|
|
LangItemTarget::TypeAlias(it) => {
|
|
write!(buf, "{}", db.type_alias_data(it).name.display(db.upcast(), edition))?
|
|
}
|
|
LangItemTarget::Trait(it) => {
|
|
write!(buf, "{}", db.trait_data(it).name.display(db.upcast(), edition))?
|
|
}
|
|
LangItemTarget::EnumVariant(it) => {
|
|
write!(buf, "{}", db.enum_variant_data(it).name.display(db.upcast(), edition))?
|
|
}
|
|
}
|
|
|
|
if let Some(s) = s {
|
|
write!(buf, "::{}", s.display(db.upcast(), edition))?;
|
|
}
|
|
return write!(buf, ")");
|
|
}
|
|
match path.type_anchor() {
|
|
Some(anchor) => {
|
|
write!(buf, "<")?;
|
|
print_type_ref(db, anchor, buf, edition)?;
|
|
write!(buf, ">::")?;
|
|
}
|
|
None => match path.kind() {
|
|
PathKind::Plain => {}
|
|
&PathKind::SELF => write!(buf, "self")?,
|
|
PathKind::Super(n) => {
|
|
for i in 0..*n {
|
|
if i == 0 {
|
|
buf.write_str("super")?;
|
|
} else {
|
|
buf.write_str("::super")?;
|
|
}
|
|
}
|
|
}
|
|
PathKind::Crate => write!(buf, "crate")?,
|
|
PathKind::Abs => {}
|
|
PathKind::DollarCrate(_) => write!(buf, "$crate")?,
|
|
},
|
|
}
|
|
|
|
for (i, segment) in path.segments().iter().enumerate() {
|
|
if i != 0 || !matches!(path.kind(), PathKind::Plain) {
|
|
write!(buf, "::")?;
|
|
}
|
|
|
|
write!(buf, "{}", segment.name.display(db.upcast(), edition))?;
|
|
if let Some(generics) = segment.args_and_bindings {
|
|
write!(buf, "::<")?;
|
|
print_generic_args(db, generics, buf, edition)?;
|
|
|
|
write!(buf, ">")?;
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn print_generic_args(
|
|
db: &dyn DefDatabase,
|
|
generics: &GenericArgs,
|
|
buf: &mut dyn Write,
|
|
edition: Edition,
|
|
) -> fmt::Result {
|
|
let mut first = true;
|
|
let args = if generics.has_self_type {
|
|
let (self_ty, args) = generics.args.split_first().unwrap();
|
|
write!(buf, "Self=")?;
|
|
print_generic_arg(db, self_ty, buf, edition)?;
|
|
first = false;
|
|
args
|
|
} else {
|
|
&generics.args
|
|
};
|
|
for arg in args {
|
|
if !first {
|
|
write!(buf, ", ")?;
|
|
}
|
|
first = false;
|
|
print_generic_arg(db, arg, buf, edition)?;
|
|
}
|
|
for binding in generics.bindings.iter() {
|
|
if !first {
|
|
write!(buf, ", ")?;
|
|
}
|
|
first = false;
|
|
write!(buf, "{}", binding.name.display(db.upcast(), edition))?;
|
|
if !binding.bounds.is_empty() {
|
|
write!(buf, ": ")?;
|
|
print_type_bounds(db, &binding.bounds, buf, edition)?;
|
|
}
|
|
if let Some(ty) = &binding.type_ref {
|
|
write!(buf, " = ")?;
|
|
print_type_ref(db, ty, buf, edition)?;
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn print_generic_arg(
|
|
db: &dyn DefDatabase,
|
|
arg: &GenericArg,
|
|
buf: &mut dyn Write,
|
|
edition: Edition,
|
|
) -> fmt::Result {
|
|
match arg {
|
|
GenericArg::Type(ty) => print_type_ref(db, ty, buf, edition),
|
|
GenericArg::Const(c) => write!(buf, "{}", c.display(db.upcast(), edition)),
|
|
GenericArg::Lifetime(lt) => write!(buf, "{}", lt.name.display(db.upcast(), edition)),
|
|
}
|
|
}
|
|
|
|
pub(crate) fn print_type_ref(
|
|
db: &dyn DefDatabase,
|
|
type_ref: &TypeRef,
|
|
buf: &mut dyn Write,
|
|
edition: Edition,
|
|
) -> fmt::Result {
|
|
// FIXME: deduplicate with `HirDisplay` impl
|
|
match type_ref {
|
|
TypeRef::Never => write!(buf, "!")?,
|
|
TypeRef::Placeholder => write!(buf, "_")?,
|
|
TypeRef::Tuple(fields) => {
|
|
write!(buf, "(")?;
|
|
for (i, field) in fields.iter().enumerate() {
|
|
if i != 0 {
|
|
write!(buf, ", ")?;
|
|
}
|
|
print_type_ref(db, field, buf, edition)?;
|
|
}
|
|
write!(buf, ")")?;
|
|
}
|
|
TypeRef::Path(path) => print_path(db, path, buf, edition)?,
|
|
TypeRef::RawPtr(pointee, mtbl) => {
|
|
let mtbl = match mtbl {
|
|
Mutability::Shared => "*const",
|
|
Mutability::Mut => "*mut",
|
|
};
|
|
write!(buf, "{mtbl} ")?;
|
|
print_type_ref(db, pointee, buf, edition)?;
|
|
}
|
|
TypeRef::Reference(pointee, lt, mtbl) => {
|
|
let mtbl = match mtbl {
|
|
Mutability::Shared => "",
|
|
Mutability::Mut => "mut ",
|
|
};
|
|
write!(buf, "&")?;
|
|
if let Some(lt) = lt {
|
|
write!(buf, "{} ", lt.name.display(db.upcast(), edition))?;
|
|
}
|
|
write!(buf, "{mtbl}")?;
|
|
print_type_ref(db, pointee, buf, edition)?;
|
|
}
|
|
TypeRef::Array(elem, len) => {
|
|
write!(buf, "[")?;
|
|
print_type_ref(db, elem, buf, edition)?;
|
|
write!(buf, "; {}]", len.display(db.upcast(), edition))?;
|
|
}
|
|
TypeRef::Slice(elem) => {
|
|
write!(buf, "[")?;
|
|
print_type_ref(db, elem, buf, edition)?;
|
|
write!(buf, "]")?;
|
|
}
|
|
TypeRef::Fn(args_and_ret, varargs, is_unsafe, abi) => {
|
|
let ((_, return_type), args) =
|
|
args_and_ret.split_last().expect("TypeRef::Fn is missing return type");
|
|
if *is_unsafe {
|
|
write!(buf, "unsafe ")?;
|
|
}
|
|
if let Some(abi) = abi {
|
|
buf.write_str("extern ")?;
|
|
buf.write_str(abi.as_str())?;
|
|
buf.write_char(' ')?;
|
|
}
|
|
write!(buf, "fn(")?;
|
|
for (i, (_, typeref)) in args.iter().enumerate() {
|
|
if i != 0 {
|
|
write!(buf, ", ")?;
|
|
}
|
|
print_type_ref(db, typeref, buf, edition)?;
|
|
}
|
|
if *varargs {
|
|
if !args.is_empty() {
|
|
write!(buf, ", ")?;
|
|
}
|
|
write!(buf, "...")?;
|
|
}
|
|
write!(buf, ") -> ")?;
|
|
print_type_ref(db, return_type, buf, edition)?;
|
|
}
|
|
TypeRef::Macro(_ast_id) => {
|
|
write!(buf, "<macro>")?;
|
|
}
|
|
TypeRef::Error => write!(buf, "{{unknown}}")?,
|
|
TypeRef::ImplTrait(bounds) => {
|
|
write!(buf, "impl ")?;
|
|
print_type_bounds(db, bounds, buf, edition)?;
|
|
}
|
|
TypeRef::DynTrait(bounds) => {
|
|
write!(buf, "dyn ")?;
|
|
print_type_bounds(db, bounds, buf, edition)?;
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn print_type_bounds(
|
|
db: &dyn DefDatabase,
|
|
bounds: &[Interned<TypeBound>],
|
|
buf: &mut dyn Write,
|
|
edition: Edition,
|
|
) -> fmt::Result {
|
|
for (i, bound) in bounds.iter().enumerate() {
|
|
if i != 0 {
|
|
write!(buf, " + ")?;
|
|
}
|
|
|
|
match bound.as_ref() {
|
|
TypeBound::Path(path, modifier) => {
|
|
match modifier {
|
|
TraitBoundModifier::None => (),
|
|
TraitBoundModifier::Maybe => write!(buf, "?")?,
|
|
}
|
|
print_path(db, path, buf, edition)?;
|
|
}
|
|
TypeBound::ForLifetime(lifetimes, path) => {
|
|
write!(
|
|
buf,
|
|
"for<{}> ",
|
|
lifetimes.iter().map(|it| it.display(db.upcast(), edition)).format(", ")
|
|
)?;
|
|
print_path(db, path, buf, edition)?;
|
|
}
|
|
TypeBound::Lifetime(lt) => write!(buf, "{}", lt.name.display(db.upcast(), edition))?,
|
|
TypeBound::Error => write!(buf, "{{unknown}}")?,
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|