mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00

Syntactically, they are indistinguishable from non-raw versions, so it doesn't make sense to separate then *at the syntax* level.
133 lines
3.7 KiB
Rust
133 lines
3.7 KiB
Rust
//! Generated file, do not edit by hand, see `xtask/src/codegen`
|
|
|
|
use crate::{
|
|
ast::AstToken,
|
|
SyntaxKind::{self, *},
|
|
SyntaxToken,
|
|
};
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
pub struct Whitespace {
|
|
pub(crate) syntax: SyntaxToken,
|
|
}
|
|
impl std::fmt::Display for Whitespace {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
std::fmt::Display::fmt(&self.syntax, f)
|
|
}
|
|
}
|
|
impl AstToken for Whitespace {
|
|
fn can_cast(kind: SyntaxKind) -> bool { kind == WHITESPACE }
|
|
fn cast(syntax: SyntaxToken) -> Option<Self> {
|
|
if Self::can_cast(syntax.kind()) {
|
|
Some(Self { syntax })
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
fn syntax(&self) -> &SyntaxToken { &self.syntax }
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
pub struct Comment {
|
|
pub(crate) syntax: SyntaxToken,
|
|
}
|
|
impl std::fmt::Display for Comment {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
std::fmt::Display::fmt(&self.syntax, f)
|
|
}
|
|
}
|
|
impl AstToken for Comment {
|
|
fn can_cast(kind: SyntaxKind) -> bool { kind == COMMENT }
|
|
fn cast(syntax: SyntaxToken) -> Option<Self> {
|
|
if Self::can_cast(syntax.kind()) {
|
|
Some(Self { syntax })
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
fn syntax(&self) -> &SyntaxToken { &self.syntax }
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
pub struct String {
|
|
pub(crate) syntax: SyntaxToken,
|
|
}
|
|
impl std::fmt::Display for String {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
std::fmt::Display::fmt(&self.syntax, f)
|
|
}
|
|
}
|
|
impl AstToken for String {
|
|
fn can_cast(kind: SyntaxKind) -> bool { kind == STRING }
|
|
fn cast(syntax: SyntaxToken) -> Option<Self> {
|
|
if Self::can_cast(syntax.kind()) {
|
|
Some(Self { syntax })
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
fn syntax(&self) -> &SyntaxToken { &self.syntax }
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
pub struct ByteString {
|
|
pub(crate) syntax: SyntaxToken,
|
|
}
|
|
impl std::fmt::Display for ByteString {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
std::fmt::Display::fmt(&self.syntax, f)
|
|
}
|
|
}
|
|
impl AstToken for ByteString {
|
|
fn can_cast(kind: SyntaxKind) -> bool { kind == BYTE_STRING }
|
|
fn cast(syntax: SyntaxToken) -> Option<Self> {
|
|
if Self::can_cast(syntax.kind()) {
|
|
Some(Self { syntax })
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
fn syntax(&self) -> &SyntaxToken { &self.syntax }
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
pub struct IntNumber {
|
|
pub(crate) syntax: SyntaxToken,
|
|
}
|
|
impl std::fmt::Display for IntNumber {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
std::fmt::Display::fmt(&self.syntax, f)
|
|
}
|
|
}
|
|
impl AstToken for IntNumber {
|
|
fn can_cast(kind: SyntaxKind) -> bool { kind == INT_NUMBER }
|
|
fn cast(syntax: SyntaxToken) -> Option<Self> {
|
|
if Self::can_cast(syntax.kind()) {
|
|
Some(Self { syntax })
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
fn syntax(&self) -> &SyntaxToken { &self.syntax }
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
pub struct FloatNumber {
|
|
pub(crate) syntax: SyntaxToken,
|
|
}
|
|
impl std::fmt::Display for FloatNumber {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
std::fmt::Display::fmt(&self.syntax, f)
|
|
}
|
|
}
|
|
impl AstToken for FloatNumber {
|
|
fn can_cast(kind: SyntaxKind) -> bool { kind == FLOAT_NUMBER }
|
|
fn cast(syntax: SyntaxToken) -> Option<Self> {
|
|
if Self::can_cast(syntax.kind()) {
|
|
Some(Self { syntax })
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
fn syntax(&self) -> &SyntaxToken { &self.syntax }
|
|
}
|