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