import type { ILanguageSyntax } from '@/application/Parser/Executable/Script/Validation/Syntax/ILanguageSyntax'; export class LanguageSyntaxStub implements ILanguageSyntax { public commentDelimiters: string[] = []; public commonCodeParts: string[] = []; public withCommentDelimiters(...delimiters: string[]) { this.commentDelimiters = delimiters; return this; } public withCommonCodeParts(...codeParts: string[]) { this.commonCodeParts = codeParts; return this; } }