All files / src/node-transformers AbstractNodeTransformer.ts

100% Statements 8/8
100% Branches 0/0
100% Functions 1/1
100% Lines 7/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 451x 1x               1x     1x       70702x                   1x     70702x                              
import { injectable, inject } from 'inversify';
import { ServiceIdentifiers } from '../container/ServiceIdentifiers';
 
import * as ESTree from 'estree';
 
import { INodeTransformer } from '../interfaces/node-transformers/INodeTransformer';
import { IOptions } from '../interfaces/options/IOptions';
import { IVisitor } from '../interfaces/IVisitor';
 
import { RandomGeneratorUtils } from '../utils/RandomGeneratorUtils';
 
@injectable()
export abstract class AbstractNodeTransformer implements INodeTransformer {
    /**
     * @type {number}
     */
    protected nodeIdentifier: number = RandomGeneratorUtils.getRandomInteger(0, 10000);
 
    /**
     * @type {IOptions}
     */
    protected readonly options: IOptions;
 
    /**
     * @param options
     */
    constructor (
        @inject(ServiceIdentifiers.IOptions) options: IOptions
    ) {
        this.options = options;
    }
 
    /**
     * @returns {IVisitor}
     */
    public abstract getVisitor (): IVisitor;
 
    /**
     * @param node
     * @param parentNode
     * @returns {ESTree.Node}
     */
    public abstract transformNode (node: ESTree.Node, parentNode: ESTree.Node): ESTree.Node;
}