Commits

Doug Gregor committed a0bc9274dbf
Change parsing and representation of extensions to accommodate generic parameters. The eventual goal for extensions of generic types is to require them to specify their generic parameters, e.g., extension Array<T> { ... } rather than today's extension Array { ... } Start parsing (optional) generic parameters here, and update the representation of ExtensionDecl to accomodate this new grammar production. Aside from the parser changes, there's no intended functionality change here. Swift SVN r20682