39 lines
595 B
PHP
39 lines
595 B
PHP
|
<?php
|
||
|
|
||
|
namespace LanguageServer\Protocol;
|
||
|
|
||
|
/**
|
||
|
* Represents information about programming constructs like variables, classes,
|
||
|
* interfaces etc.
|
||
|
*/
|
||
|
class SymbolInformation
|
||
|
{
|
||
|
/**
|
||
|
* The name of this symbol.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
public $name;
|
||
|
|
||
|
/**
|
||
|
* The kind of this symbol.
|
||
|
*
|
||
|
* @var number
|
||
|
*/
|
||
|
public $kind;
|
||
|
|
||
|
/**
|
||
|
* The location of this symbol.
|
||
|
*
|
||
|
* @var Location
|
||
|
*/
|
||
|
public $location;
|
||
|
|
||
|
/**
|
||
|
* The name of the symbol containing this symbol.
|
||
|
*
|
||
|
* @var string|null
|
||
|
*/
|
||
|
public $containerName;
|
||
|
}
|