7 lines
233 B
TypeScript
7 lines
233 B
TypeScript
import { ILanguageSyntax } from '@/domain/ScriptCode';
|
|
|
|
export class BatchFileSyntax implements ILanguageSyntax {
|
|
public readonly commentDelimiters = [ 'REM', '::' ];
|
|
public readonly commonCodeParts = [ '(', ')', 'else' ];
|
|
}
|