pub struct SolidityLanguage {}Implementations§
Trait Implementations§
Source§impl Clone for SolidityLanguage
impl Clone for SolidityLanguage
Source§fn clone(&self) -> SolidityLanguage
fn clone(&self) -> SolidityLanguage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SolidityLanguage
impl Debug for SolidityLanguage
Source§impl Default for SolidityLanguage
impl Default for SolidityLanguage
Source§fn default() -> SolidityLanguage
fn default() -> SolidityLanguage
Returns the “default value” for a type. Read more
Source§impl Language for SolidityLanguage
impl Language for SolidityLanguage
Source§type SyntaxKind = SoliditySyntaxKind
type SyntaxKind = SoliditySyntaxKind
The kind kind type used to represent different kind and node types in the language. Read more
Source§impl<'config> Lexer<SolidityLanguage> for SolidityLexer<'config>
impl<'config> Lexer<SolidityLanguage> for SolidityLexer<'config>
Source§fn lex_incremental(
&self,
source: impl Source,
changed: usize,
cache: IncrementalCache<'_, SolidityLanguage>,
) -> LexOutput<SolidityLanguage>
fn lex_incremental( &self, source: impl Source, changed: usize, cache: IncrementalCache<'_, SolidityLanguage>, ) -> LexOutput<SolidityLanguage>
Tokenizes source text using an existing cache for incremental parsing. Read more
Source§fn lex(
&self,
source: impl Source,
) -> OakDiagnostics<Vec<Token<<L as Language>::SyntaxKind>>>
fn lex( &self, source: impl Source, ) -> OakDiagnostics<Vec<Token<<L as Language>::SyntaxKind>>>
Tokenizes the given source text into a sequence of tokens. Read more
Auto Trait Implementations§
impl Freeze for SolidityLanguage
impl RefUnwindSafe for SolidityLanguage
impl Send for SolidityLanguage
impl Sync for SolidityLanguage
impl Unpin for SolidityLanguage
impl UnwindSafe for SolidityLanguage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more