a5433b211a 
								
							
								 
							
						 
						
							
							
								
								fix tests  
							
							
							
						 
						
							2019-06-20 06:41:52 +08:00  
				
					
						
							
							
								 
						
							
							
								18c6ccd137 
								
							
								 
							
						 
						
							
							
								
								refactor: use protocol package ( #661 )  
							
							... 
							
							
							
							Adapts the Language Server to use the extracted php language server protocol 
							
						 
						
							2018-09-09 14:37:35 +02:00  
				
					
						
							
							
								 
						
							
							
								80ef8ff503 
								
									
								
							
								 
							
						 
						
							
							
								
								fix(indexing): properly resolve self, static and parent keywords ( #532 )  
							
							... 
							
							
							
							Previously we would dump static, self and parent as literal FQNs into the index. 
							
						 
						
							2017-11-18 16:59:57 -08:00  
				
					
						
							
							
								 
						
							
							
								7f427a1215 
								
							
								 
							
						 
						
							
							
								
								Adopt Microsoft/tolerant-php-parser ( #357 )  
							
							
							
						 
						
							2017-06-09 20:25:30 +02:00  
				
					
						
							
							
								 
						
							
							
								a4a13e6528 
								
							
								 
							
						 
						
							
							
								
								Add support for inherited members ( #218 )  
							
							... 
							
							
							
							in completion, definition, references, hover etc 
							
						 
						
							2016-12-16 01:40:17 +01:00  
				
					
						
							
							
								 
						
							
							
								33211c68ca 
								
							
								 
							
						 
						
							
							
								
								Resolve expressions recursively ( #155 )  
							
							... 
							
							
							
							* Add Definition class
* Add recursive DefinitionResolver
* Cache hover 
							
						 
						
							2016-11-18 15:22:24 +01:00  
				
					
						
							
							
								 
						
							
							
								03bbf5f4ba 
								
							
								 
							
						 
						
							
							
								
								Enable LS to operate without accessing the file system ( #136 )  
							
							... 
							
							
							
							This PR decouples the LS from direct file system access by implementing the proposals for workspace/files and textDocument/content under workspace/xfiles and textDocument/xcontent. The requests are only used when the client expressed support for them through ClientCapabilities, otherwise direct FS access is used.
This turns document content retrieval and recursive file search into async operations.
In turn, all server handlers can now operate async by returning a promise. 
							
						 
						
							2016-11-14 10:25:44 +01:00  
				
					
						
							
							
								 
						
							
							
								867196babf 
								
							
								 
							
						 
						
							
							
								
								Definition for instanceof class ( #117 )  
							
							
							
						 
						
							2016-10-26 20:56:02 +02:00  
				
					
						
							
							
								 
						
							
							
								8a354ba1af 
								
							
								 
							
						 
						
							
							
								
								Definition for use function ( #116 )  
							
							
							
						 
						
							2016-10-26 11:47:02 +02:00  
				
					
						
							
							
								 
						
							
							
								5ecab683eb 
								
							
								 
							
						 
						
							
							
								
								Linting ( #107 )  
							
							... 
							
							
							
							* Update travis config.
* Add phpcs config file.
* Exclude rules
* Ignore failures in tests
* Automatic fixes
* Inline ParsingMode enum as class constants
* Loosen FormatTest because of excluded rule 
							
						 
						
							2016-10-24 19:35:37 +02:00  
				
					
						
							
							
								 
						
							
							
								a19d225a7a 
								
							
								 
							
						 
						
							
							
								
								Fix definition for method return type ( #76 )  
							
							
							
						 
						
							2016-10-21 16:51:11 +02:00  
				
					
						
							
							
								 
						
							
							
								e19670c141 
								
							
								 
							
						 
						
							
							
								
								Resolve self, static, parent ( #99 )  
							
							
							
						 
						
							2016-10-20 00:18:36 +02:00  
				
					
						
							
							
								 
						
							
							
								6bd1b10e4d 
								
							
								 
							
						 
						
							
							
								
								Resolve $this ( #98 )  
							
							
							
						 
						
							2016-10-20 00:10:47 +02:00  
				
					
						
							
							
								 
						
							
							
								4db7ffd88c 
								
							
								 
							
						 
						
							
							
								
								Hover ( #50 )  
							
							... 
							
							
							
							* Add hover support
* Use context in DocBlockParser
* Improve DocBlockParser error handling
* Improve hover output
* Add more tests 
							
						 
						
							2016-10-19 12:31:32 +02:00  
				
					
						
							
							
								 
						
							
							
								2e03aa32f3 
								
							
								 
							
						 
						
							
							
								
								Fix class constant tests  
							
							
							
						 
						
							2016-10-19 12:26:22 +02:00  
				
					
						
							
							
								 
						
							
							
								6b6ec8c105 
								
							
								 
							
						 
						
							
							
								
								Symbol test refactor ( #92 )  
							
							... 
							
							
							
							* Don't use json_decode in symbol tests
* Remove custom setUp()
* Use getDefinitionLocation()
* TextDocumentTestCase -> ServerTestCase
* Refactor Workspace\SymbolTest 
							
						 
						
							2016-10-18 23:09:51 +02:00  
				
					
						
							
							
								 
						
							
							
								691a0bddfe 
								
							
								 
							
						 
						
							
							
								
								Refactor tests for easier changes to fixtures ( #87 )  
							
							
							
						 
						
							2016-10-18 10:48:16 +02:00  
				
					
						
							
							
								 
						
							
							
								c479969758 
								
							
								 
							
						 
						
							
							
								
								Add support for definition of static class access ( #72 )  
							
							... 
							
							
							
							Getting the definition of TestClass in
TestClass::staticTestMethod();
echo TestClass::$staticTestProperty;
echo TestClass::TEST_CLASS_CONST; 
							
						 
						
							2016-10-12 12:40:13 +02:00  
				
					
						
							
							
								 
						
							
							
								6fe01183b0 
								
							
								 
							
						 
						
							
							
								
								References ( #52 )  
							
							... 
							
							
							
							* Adds support for textDocument/references
* Adds tests for global definitions and global fallback 
							
						 
						
							2016-10-12 01:45:15 +02:00