Lines Matching refs:LitBool
51 Bool(LitBool),
128 pub struct LitBool {
581 impl LitBool { impl
583 LitBool { value, span } in new()
606 use crate::lit::{LitBool, LitByte, LitByteStr, LitCStr, LitChar, LitFloat, LitInt, LitStr};
722 impl Debug for LitBool { implementation
728 impl LitBool { impl
827 pub fn LitBool(marker: lookahead::TokenMarker) -> LitBool {
858 value, Lit, LitBool, LitByte, LitByteStr, LitCStr, LitChar, LitFloat, LitFloatRepr, LitInt,
878 let lit_bool = LitBool { in parse()
1016 impl Parse for LitBool { implementation
1060 impl_token!("boolean literal" LitBool);
1065 use crate::lit::{LitBool, LitByte, LitByteStr, LitCStr, LitChar, LitFloat, LitInt, LitStr};
1119 impl ToTokens for LitBool { implementation
1129 Lit, LitBool, LitByte, LitByteStr, LitCStr, LitChar, LitFloat, LitFloatRepr, LitInt,
1207 return Lit::Bool(LitBool { in new()