class SampleSwitch3 {
    // class variables
    private switch;
}

// class properties
class SampleSwitch4 {
    private var;
    set switch(value) {}
    get switch() {
        return this.var;
    }
}

class SampleSwitch5 {
    switch() {} // class methods
}

// interface declarations
interface SampleSwitch6 {
    switch: any;
}
