Files
kotlin-fork/grammar
Denis Zharkov 9c574469ca Parsing: allow primary ctor in object syntactically
It's needed for better recovering for cases of changes like 'class' -> 'object'

The only sensible case when it's may be bad:
class A {
   object B
   constructor() : super()
}

But it seems to be rare, and ';' can be used to separate object from secondary ctor
2015-06-02 14:07:48 +03:00
..
2015-03-20 12:08:05 +01:00

This module contains a semi-formal description of Kotlin grammar. It is processed by a tool to generate the Kotlin grammar specification on the Kotlin Web site.