2019-10-24 16:58:52 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
2019-11-08 16:27:08 -05:00
|
|
|
namespace Aviat\Kilo;
|
2019-10-24 16:58:52 -04:00
|
|
|
|
|
|
|
class Syntax {
|
|
|
|
public const HIGHLIGHT_NUMBERS = (1 << 0);
|
2019-10-25 11:49:04 -04:00
|
|
|
public const HIGHLIGHT_STRINGS = (1 << 1);
|
2019-10-24 16:58:52 -04:00
|
|
|
|
2019-10-29 17:02:03 -04:00
|
|
|
// Tokens for PHP files
|
|
|
|
public array $tokens = [];
|
|
|
|
|
2021-03-05 21:11:27 -05:00
|
|
|
public static function new(
|
|
|
|
string $name,
|
|
|
|
array $extList = [],
|
|
|
|
array $keywords1 = [],
|
|
|
|
array $keywords2 = [],
|
|
|
|
string $slcs = '//',
|
|
|
|
string $mcs = '/*',
|
|
|
|
string $mce = '*/',
|
|
|
|
int $flags = 0,
|
|
|
|
): self
|
2019-10-24 16:58:52 -04:00
|
|
|
{
|
2021-03-05 21:11:27 -05:00
|
|
|
return new self($name, $extList, $keywords1, $keywords2, $slcs, $mcs, $mce, $flags);
|
2019-10-24 16:58:52 -04:00
|
|
|
}
|
|
|
|
|
2021-03-05 21:11:27 -05:00
|
|
|
private function __construct(
|
|
|
|
/** The name of the programming language */
|
|
|
|
public string $filetype,
|
|
|
|
/** Relevant file extensions for the specified language */
|
|
|
|
public array $filematch,
|
|
|
|
/** Primary set of language keywords */
|
|
|
|
public array $keywords1,
|
|
|
|
/** Secondary set of language keywords */
|
|
|
|
public array $keywords2,
|
|
|
|
/** Syntax to start a single line comment */
|
|
|
|
public string $singleLineCommentStart,
|
|
|
|
/** Syntax to start a multi-line comment */
|
|
|
|
public string $multiLineCommentStart,
|
|
|
|
/** Syntax to end a multi-line commment */
|
2021-03-05 21:16:39 -05:00
|
|
|
public string $multiLineCommentEnd,
|
2021-03-05 21:11:27 -05:00
|
|
|
/** Bitflags configuring the specified language syntax */
|
|
|
|
public int $flags,
|
|
|
|
) {}
|
2019-10-24 16:58:52 -04:00
|
|
|
}
|