MCPcopy
hub / github.com/microsoft/pyright / constructor

Method constructor

server/src/parser/parseNodes.ts:197–203  ·  view source on GitHub ↗
(startToken: Token, targetExpression: ExpressionNode, sequenceExpression: ExpressionNode)

Source from the content-addressed store, hash-verified

195 sequenceExpression: ExpressionNode;
196
197 constructor(startToken: Token, targetExpression: ExpressionNode, sequenceExpression: ExpressionNode) {
198 super(startToken);
199 this.targetExpression = targetExpression;
200 this.sequenceExpression = sequenceExpression;
201 this.extend(targetExpression);
202 this.extend(sequenceExpression);
203 }
204
205 getChildren(): RecursiveParseNodeArray {
206 return [this.targetExpression, this.sequenceExpression];

Callers

nothing calls this directly

Calls 1

extendMethod · 0.80

Tested by

no test coverage detected