// tslint:disable-next-line:max-line-length import { IFunctionCallArgument } from '@/application/Parser/Script/Compiler/FunctionCall/Argument/IFunctionCallArgument'; export class FunctionCallArgumentStub implements IFunctionCallArgument { public parameterName = 'stub-parameter-name'; public argumentValue = 'stub-arg-name'; public withParameterName(parameterName: string) { this.parameterName = parameterName; return this; } public withArgumentValue(argumentValue: string) { this.argumentValue = argumentValue; return this; } }