Kevin Smith (2013-02-12T14:44:48.000Z)
First, thanks for creating a proposal for this.  A couple of questions:

1)  Is class method syntax slated for ES6?

2)  I assume that we'd parse "static" the same way we parse "get" and
"set", e.g. this is possible:

    class C {
        static() {} // Method "static" on C instance
        static static() {} // Method "static" on C
    }

Thanks!

{ Kevin }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20130212/e3cc301a/attachment.html>
github at esdiscuss.org (2013-07-12T02:26:27.686Z)
First, thanks for creating a proposal for this.  A couple of questions:

1. Is class method syntax slated for ES6?
2. I assume that we'd parse "static" the same way we parse "get" and"set", e.g. this is possible:

    ```javascript
    class C {
        static() {} // Method "static" on C instance
        static static() {} // Method "static" on C
    }
    ```