...
property | declares a new property. The full form is like this. Name is the only required field:
| ||||||||||||
method | declares a new method. The full form is like this. Name is the only required field:
A note on parameter kinds:
Parameter names may include whitespace and special characters as long as the parameter is quoted. For example, it is possible to simulate varargs like this:
| ||||||||||||
delegatesTo | adds all of the public methods in the delegated type to the current type. For example:
will add all public methods of list to the current type for content assist, underlining, hovers, and navigation. | ||||||||||||
delegatesTo | (alternative form with named arguments) adds all of the public methods in the delegated type to the current type. There is a possibility to parameterize using named arguments:
|
...