pub struct ConstructorSuperCallFinder {
pub has_valid_super_call: bool,
in_nested: bool,
pub nested_super_calls: Vec<Span>,
}
Fields
has_valid_super_call: bool
in_nested: bool
nested_super_calls: Vec<Span>
Trait Implementations
sourceimpl Debug for ConstructorSuperCallFinder
impl Debug for ConstructorSuperCallFinder
sourceimpl Default for ConstructorSuperCallFinder
impl Default for ConstructorSuperCallFinder
sourcefn default() -> ConstructorSuperCallFinder
fn default() -> ConstructorSuperCallFinder
Returns the “default value” for a type. Read more
sourceimpl Visit<RArrowExpr> for ConstructorSuperCallFinder
impl Visit<RArrowExpr> for ConstructorSuperCallFinder
fn visit(&mut self, f: &RArrowExpr)
sourceimpl Visit<RClass> for ConstructorSuperCallFinder
impl Visit<RClass> for ConstructorSuperCallFinder
Ignore nested classes.
sourceimpl Visit<RSeqExpr> for ConstructorSuperCallFinder
impl Visit<RSeqExpr> for ConstructorSuperCallFinder
computedPropertyNames30_ES5.ts says
Ideally, we would capture this. But the reference is illegal, and not capturing this is consistent with treatment of other similar violations.
Auto Trait Implementations
impl RefUnwindSafe for ConstructorSuperCallFinder
impl Send for ConstructorSuperCallFinder
impl Sync for ConstructorSuperCallFinder
impl Unpin for ConstructorSuperCallFinder
impl UnwindSafe for ConstructorSuperCallFinder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more