@quenk/wml 2.11.3 → 2.12.1

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.
@@ -124,7 +124,17 @@ export declare class LetStatement {
124
124
  type: string;
125
125
  constructor(id: UnqualifiedIdentifier, cons: ConstructorType, expression: Expression, location: Location);
126
126
  }
127
- export declare type ContextTypeIndicator = Type | ContextStatementMember[] | ImportStatement;
127
+ export declare type ContextTypeIndicator = ConstructorType | ContextFromStatement;
128
+ /**
129
+ * ContextFromStatement
130
+ */
131
+ export declare class ContextFromStatement {
132
+ cons: ConstructorType;
133
+ module: StringLiteral;
134
+ location: Location;
135
+ type: string;
136
+ constructor(cons: ConstructorType, module: StringLiteral, location: Location);
137
+ }
128
138
  /**
129
139
  * ViewStatement
130
140
  */
@@ -382,10 +392,10 @@ export declare class CallExpression {
382
392
  * MemberExpression
383
393
  */
384
394
  export declare class MemberExpression {
385
- target: Expression;
386
- member: UnqualifiedIdentifier | StringLiteral;
395
+ head: Expression;
396
+ tail: UnqualifiedIdentifier | UnqualifiedConstructor | StringLiteral;
387
397
  location: Location;
388
- constructor(target: Expression, member: UnqualifiedIdentifier | StringLiteral, location: Location);
398
+ constructor(head: Expression, tail: UnqualifiedIdentifier | UnqualifiedConstructor | StringLiteral, location: Location);
389
399
  }
390
400
  export declare class ReadExpression {
391
401
  target: Expression;