This commit consolidates scripts and categories under a unified 'Executable' concept. This simplifies the architecture and improves code readability. - Introduce subfolders within `src/domain` to segregate domain elements. - Update class and interface names by removing the 'I' prefix in alignment with new coding standards. - Replace 'Node' with 'Executable' to clarify usage; reserve 'Node' exclusively for the UI's tree component.
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import type { IFunctionParameter } from '@/application/Parser/Executable/Script/Compiler/Function/Parameter/IFunctionParameter';
|
|
import type { IFunctionParameterCollection } from '@/application/Parser/Executable/Script/Compiler/Function/Parameter/IFunctionParameterCollection';
|
|
import { FunctionParameterStub } from './FunctionParameterStub';
|
|
|
|
export class FunctionParameterCollectionStub implements IFunctionParameterCollection {
|
|
private parameters = new Array<IFunctionParameter>();
|
|
|
|
public addParameter(parameter: IFunctionParameter): void {
|
|
this.parameters.push(parameter);
|
|
}
|
|
|
|
public get all(): readonly IFunctionParameter[] {
|
|
return this.parameters;
|
|
}
|
|
|
|
public withParameterName(parameterName: string, isOptional = true) {
|
|
const parameter = new FunctionParameterStub()
|
|
.withName(parameterName)
|
|
.withOptional(isOptional);
|
|
this.addParameter(parameter);
|
|
return this;
|
|
}
|
|
|
|
public withParameterNames(parameterNames: readonly string[], isOptional = true) {
|
|
for (const parameterName of parameterNames) {
|
|
this.withParameterName(parameterName, isOptional);
|
|
}
|
|
return this;
|
|
}
|
|
}
|