PropertyListType

The PropertyListType pseudo type maps to a list of properties that can be passed as parameters to a method. Use this pseudo type, for example, to specify a variable parameter list of one or more parameters of type Property.

A method on any class can have a single PropertyListType formal parameter, which must be the first or last formal parameter in the method signature.

When a method with a variable property list is called from a JADE method, the compiler allows a variable number of actual parameters of type Property to be passed.

addMemberKeyProperty(properties: PropertyListType);

The PropertyListType pseudo type can be used only as a formal parameter in a method signature. You cannot define a local variable with a type of PropertyListType.

For details about passing variable parameters to methods, see "Passing Variable Parameters to Methods", in the following subsection.