Ary Borenszweig wrote:

> Yes. Maybe every keyword could be just "keyword(...)". For example:
> keyword(static), keyword(final), etc. For example this code now:
> 
> pure SomeType foo() {
> }
> 
> would be, with this change:
> 
> keyword(pure) SomeType foo() {
> }
> 
> Hmm...
> 
> Or maybe:
> 
> @pure void foo() {
> }
> 
> :-)

For future extensibility it should be

<keyword type="pure"> SomeType foo() { /* ... */ }

;)

Reply via email to