12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import { injectable, inject } from 'inversify';
- import { ServiceIdentifiers } from '../../../container/ServiceIdentifiers';
- import * as ESTree from 'estree';
- import { Expression } from 'estree';
- import { TStatement } from '../../../types/node/TStatement';
- import { IOptions } from '../../../interfaces/options/IOptions';
- import { initializable } from '../../../decorators/Initializable';
- import { AbstractCustomNode } from '../../AbstractCustomNode';
- import { Nodes } from '../../../node/Nodes';
- import { NodeUtils } from '../../../node/NodeUtils';
- @injectable()
- export class CallExpressionControlFlowStorageCallNode extends AbstractCustomNode {
- /**
- * @type {Expression}
- */
- @initializable()
- private callee: Expression;
- /**
- * @type {string}
- */
- @initializable()
- private controlFlowStorageKey: string;
- /**
- * @type {string}
- */
- @initializable()
- private controlFlowStorageName: string;
- /**
- * @type {(ESTree.Expression | ESTree.SpreadElement)[]}
- */
- @initializable()
- private expressionArguments: (ESTree.Expression | ESTree.SpreadElement)[];
- /**
- * @param options
- */
- constructor (
- @inject(ServiceIdentifiers.IOptions) options: IOptions
- ) {
- super(options);
- }
- /**
- * @param controlFlowStorageName
- * @param controlFlowStorageKey
- * @param callee
- * @param expressionArguments
- */
- public initialize (
- controlFlowStorageName: string,
- controlFlowStorageKey: string,
- callee: Expression,
- expressionArguments: (ESTree.Expression | ESTree.SpreadElement)[]
- ): void {
- this.controlFlowStorageName = controlFlowStorageName;
- this.controlFlowStorageKey = controlFlowStorageKey;
- this.callee = callee;
- this.expressionArguments = expressionArguments;
- }
- protected getNodeStructure (): TStatement[] {
- const structure: TStatement = Nodes.getExpressionStatementNode(
- Nodes.getCallExpressionNode(
- Nodes.getMemberExpressionNode(
- Nodes.getIdentifierNode(this.controlFlowStorageName),
- Nodes.getIdentifierNode(this.controlFlowStorageKey)
- ),
- [
- this.callee,
- ...this.expressionArguments
- ]
- )
- );
- NodeUtils.parentize(structure);
- return [structure];
- }
- }
|