pub struct WolframLanguage {}Implementations§
Trait Implementations§
Source§impl Default for WolframLanguage
impl Default for WolframLanguage
Source§impl Language for WolframLanguage
impl Language for WolframLanguage
Source§type SyntaxKind = WolframSyntaxKind
type SyntaxKind = WolframSyntaxKind
The kind kind type used to represent different kind and node types in the language. Read more
Source§impl<'config> Lexer<WolframLanguage> for WolframLexer<'config>
impl<'config> Lexer<WolframLanguage> for WolframLexer<'config>
Source§fn lex_incremental(
&self,
source: impl Source,
changed: usize,
cache: IncrementalCache<'_, WolframLanguage>,
) -> LexOutput<WolframLanguage>
fn lex_incremental( &self, source: impl Source, changed: usize, cache: IncrementalCache<'_, WolframLanguage>, ) -> LexOutput<WolframLanguage>
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 WolframLanguage
impl RefUnwindSafe for WolframLanguage
impl Send for WolframLanguage
impl Sync for WolframLanguage
impl Unpin for WolframLanguage
impl UnwindSafe for WolframLanguage
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