@quenk/wml 2.11.4 → 2.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -392,10 +392,10 @@ export declare class CallExpression {
392
392
  * MemberExpression
393
393
  */
394
394
  export declare class MemberExpression {
395
- target: Expression;
396
- member: UnqualifiedIdentifier | StringLiteral;
395
+ head: Expression;
396
+ tail: UnqualifiedIdentifier | UnqualifiedConstructor | StringLiteral;
397
397
  location: Location;
398
- constructor(target: Expression, member: UnqualifiedIdentifier | StringLiteral, location: Location);
398
+ constructor(head: Expression, tail: UnqualifiedIdentifier | UnqualifiedConstructor | StringLiteral, location: Location);
399
399
  }
400
400
  export declare class ReadExpression {
401
401
  target: Expression;