1
Fork 0

Rename Lit.node to Lit.kind

This commit is contained in:
varkor 2019-09-26 16:56:53 +01:00
parent ce6aabbaa1
commit 17726f6b52
17 changed files with 25 additions and 25 deletions

View file

@ -1361,7 +1361,7 @@ pub struct Lit {
/// The "semantic" representation of the literal lowered from the original tokens.
/// Strings are unescaped, hexadecimal forms are eliminated, etc.
/// FIXME: Remove this and only create the semantic representation during lowering to HIR.
pub node: LitKind,
pub kind: LitKind,
pub span: Span,
}