In specifications that are partial, it's useful to specify an ellipsis (3 dots) for unspecified existing class attributes or methods.
I would like to do something like
class A {
i : integer
x : float
...
setI()
getI()
...
}
Unfortunately, "..." means a horizontal line in a class definition.
I found at least a partial work-around:
...() will be recognized as a method and produces "...()"
As a solution, I'd suggestion special tokens inside a class, e.g., incomplete_attributes (to force an elipsis at the end of the attribute list) and similarly incomplete_methods