Files
development/vendor/felixfbecker/language-server-protocol/src/DocumentHighlightKind.php
2023-03-09 16:27:10 +09:00

25 lines
379 B
PHP

<?php
namespace LanguageServerProtocol;
/**
* A document highlight kind.
*/
abstract class DocumentHighlightKind
{
/**
* A textual occurrence.
*/
const TEXT = 1;
/**
* Read-access of a symbol, like reading a variable.
*/
const READ = 2;
/**
* Write-access of a symbol, like writing to a variable.
*/
const WRITE = 3;
}