| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import { inject, injectable } from 'inversify';
- import { ServiceIdentifiers } from '../container/ServiceIdentifiers';
- import * as estraverse from 'estraverse';
- import * as ESTree from 'estree';
- import format from 'string-template';
- import { TObject } from '../types/TObject';
- import { TStatement } from '../types/node/TStatement';
- import { ICustomCodeHelperFormatter } from '../interfaces/custom-code-helpers/ICustomCodeHelperFormatter';
- import { IPrevailingKindOfVariablesAnalyzer } from '../interfaces/analyzers/calls-graph-analyzer/IPrevailingKindOfVariablesAnalyzer';
- import { NodeGuards } from '../node/NodeGuards';
- @injectable()
- export class CustomCodeHelperFormatter implements ICustomCodeHelperFormatter {
- /**
- * @type {ESTree.VariableDeclaration['kind']}
- */
- private readonly prevailingKindOfVariables: ESTree.VariableDeclaration['kind'];
- public constructor (
- @inject(ServiceIdentifiers.IPrevailingKindOfVariablesAnalyzer)
- prevailingKindOfVariablesAnalyzer: IPrevailingKindOfVariablesAnalyzer
- ) {
- this.prevailingKindOfVariables = prevailingKindOfVariablesAnalyzer.getPrevailingKind();
- }
- /**
- * @param {string} template
- * @param {TMapping} mapping
- * @returns {string}
- */
- public formatTemplate <TMapping extends TObject> (
- template: string,
- mapping: TMapping
- ): string {
- return format(template, mapping);
- }
- /**
- * @param {TStatement[]} statements
- * @returns {TStatement[]}
- */
- public formatStructure (statements: TStatement[]): TStatement[] {
- for (const statement of statements) {
- estraverse.replace(statement, {
- enter: (node: ESTree.Node): ESTree.Node | void => {
- if (!NodeGuards.isVariableDeclarationNode(node)) {
- return;
- }
- if (this.prevailingKindOfVariables === 'var') {
- node.kind = 'var';
- }
- return node;
- }
- });
- }
- return statements;
- }
- }
|