mirror of
				https://github.com/MaskRay/ccls.git
				synced 2025-10-31 04:32:33 +00:00 
			
		
		
		
	- Hide declaration from list of refs on types and variables (so now they will show as '0 refs') - Let the user hide code lens on parameter and function-local variables
		
			
				
	
	
		
			44 lines
		
	
	
		
			903 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			903 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| enum class Foo {
 | |
|   A,
 | |
|   B = 20
 | |
| };
 | |
| 
 | |
| /*
 | |
| OUTPUT:
 | |
| {
 | |
|   "types": [{
 | |
|       "id": 0,
 | |
|       "usr": "c:@E@Foo",
 | |
|       "short_name": "Foo",
 | |
|       "detailed_name": "Foo",
 | |
|       "definition_spelling": "1:12-1:15",
 | |
|       "definition_extent": "1:1-4:2",
 | |
|       "vars": [0, 1],
 | |
|       "uses": ["1:12-1:15"]
 | |
|     }],
 | |
|   "vars": [{
 | |
|       "id": 0,
 | |
|       "usr": "c:@E@Foo@A",
 | |
|       "short_name": "A",
 | |
|       "detailed_name": "Foo Foo::A",
 | |
|       "definition_spelling": "2:3-2:4",
 | |
|       "definition_extent": "2:3-2:4",
 | |
|       "variable_type": 0,
 | |
|       "declaring_type": 0,
 | |
|       "is_local": false,
 | |
|       "uses": ["2:3-2:4"]
 | |
|     }, {
 | |
|       "id": 1,
 | |
|       "usr": "c:@E@Foo@B",
 | |
|       "short_name": "B",
 | |
|       "detailed_name": "Foo Foo::B",
 | |
|       "definition_spelling": "3:3-3:4",
 | |
|       "definition_extent": "3:3-3:9",
 | |
|       "variable_type": 0,
 | |
|       "declaring_type": 0,
 | |
|       "is_local": false,
 | |
|       "uses": ["3:3-3:4"]
 | |
|     }]
 | |
| }
 | |
| */
 |