pub struct TypeScriptExtractor;Implementations§
Trait Implementations§
Source§impl Default for TypeScriptExtractor
impl Default for TypeScriptExtractor
Source§impl LanguageExtractor for TypeScriptExtractor
impl LanguageExtractor for TypeScriptExtractor
fn extract_test_functions( &self, source: &str, file_path: &str, ) -> Vec<TestFunction>
Source§fn extract_file_analysis(&self, source: &str, file_path: &str) -> FileAnalysis
fn extract_file_analysis(&self, source: &str, file_path: &str) -> FileAnalysis
Extract file-level analysis including imports and parameterized test counts.
Default impl delegates to
extract_test_functions with file-level fields as false/0.
Language extractors MUST override this to provide accurate detection.Auto Trait Implementations§
impl Freeze for TypeScriptExtractor
impl RefUnwindSafe for TypeScriptExtractor
impl Send for TypeScriptExtractor
impl Sync for TypeScriptExtractor
impl Unpin for TypeScriptExtractor
impl UnsafeUnpin for TypeScriptExtractor
impl UnwindSafe for TypeScriptExtractor
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