[][src]Struct resast::Class

pub struct Class<'a> {
    pub id: Option<Ident<'a>>,
    pub super_class: Option<Box<Expr<'a>>>,
    pub body: ClassBody<'a>,
}

A way to declare object templates

class Thing {
    constructor() {
        this._a = 0;
    }
    stuff() {
        return 'stuff'
    }
    set a(value) {
        if (value > 100) {
            this._a = 0;
        } else {
            this._a = value;
        }
    }
    get a() {
        return this._a;
    }
}
let y = class {
    constructor() {
        this.a = 100;
    }
}

Fields

id: Option<Ident<'a>>super_class: Option<Box<Expr<'a>>>body: ClassBody<'a>

Methods

impl<'a> Class<'a>[src]

pub fn new(
    id: Option<Ident<'a>>,
    super_class: Option<Expr<'a>>,
    body: Vec<Prop<'a>>
) -> Class<'a>
[src]

Trait Implementations

impl<'a> Clone for Class<'a>[src]

impl<'a> Debug for Class<'a>[src]

impl<'a> PartialEq<Class<'a>> for Class<'a>[src]

impl<'a> StructuralPartialEq for Class<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Class<'a>

impl<'a> Send for Class<'a>

impl<'a> Sync for Class<'a>

impl<'a> Unpin for Class<'a>

impl<'a> UnwindSafe for Class<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.