|
@@ -15,9 +15,8 @@ class BindGroup {
|
|
|
* @param {string} name - The bind group's name.
|
|
* @param {string} name - The bind group's name.
|
|
|
* @param {Array<Binding>} bindings - An array of bindings.
|
|
* @param {Array<Binding>} bindings - An array of bindings.
|
|
|
* @param {number} index - The group index.
|
|
* @param {number} index - The group index.
|
|
|
- * @param {Array<Binding>} bindingsReference - An array of reference bindings.
|
|
|
|
|
*/
|
|
*/
|
|
|
- constructor( name = '', bindings = [], index = 0, bindingsReference = [] ) {
|
|
|
|
|
|
|
+ constructor( name = '', bindings = [], index = 0 ) {
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* The bind group's name.
|
|
* The bind group's name.
|
|
@@ -40,13 +39,6 @@ class BindGroup {
|
|
|
*/
|
|
*/
|
|
|
this.index = index;
|
|
this.index = index;
|
|
|
|
|
|
|
|
- /**
|
|
|
|
|
- * An array of reference bindings.
|
|
|
|
|
- *
|
|
|
|
|
- * @type {Array<Binding>}
|
|
|
|
|
- */
|
|
|
|
|
- this.bindingsReference = bindingsReference;
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* The group's ID.
|
|
* The group's ID.
|
|
|
*
|
|
*
|