Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Objective-C: Different behavior for .m and .h files #969

Open
Allless opened this issue Aug 27, 2024 · 3 comments
Open

Objective-C: Different behavior for .m and .h files #969

Allless opened this issue Aug 27, 2024 · 3 comments

Comments

@Allless
Copy link

Allless commented Aug 27, 2024

Context

Setting up autocompletion for Objective-C.
Filesystem:

.ccls
clang
-I/usr/GNUstep/Local/Library/Headers
-L/usr/GNUstep/Local/Library/Libraries
-lgnustep-base -lobjc
-fobjc-runtime=gnustep-2.0
src/main.m
#import <Foundation/Foundation.h>
#import "MyClass2.h"

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        // Create an instance of MyClass
        MyClass *myObject = [[MyClass alloc] init];
        
        // Call the sayHello method
        [myObject sayHello];
    }
    return 0;
}
src/MyClass.m
#import <Foundation/Foundation.h>

@interface MyClass : NSObject

- (void)sayHello;

@end

@implementation MyClass

- (void)sayHello {
    NSLog(@"Hello, World!");
}

@end
src/MyClass2.h
#import <Foundation/Foundation.h>

@interface MyClass : NSObject

- (void)sayHello;

@end

@implementation MyClass

- (void)sayHello {
    NSLog(@"Hello, World!");
}

@end

Observed behavior

  • The MyClass.m and MyClass2.h have the same content, and there are no custom arguments specified for the .m and .h files, but they get different error highlighting.
    • Specifically, the @interface syntax is highlighted as invalid in .h files, even though, the Foundation header is imported and recognized (you can use a go-to definition feature that will respond with the actual path).

image

  expected identifier or '('ccls(4)
  • Code can be compiled using the command from .ccls without errors, which means syntax is valid considering the project setup.

Expected behavior

  • Shouldn't be getting error highlighting in diagnostics if the project can be built successfully with the provided command
  • The language server should treat the .h and .m files in the same way for an Objective-C environment.

Steps to reproduce

  1. Use the file structure described in the "Observer behavior section"
  2. Initialize the language server, and send a didOpen notification for the .h file
  3. See that error diagnostics are being published
  4. Send a didOpen notification for the .m file with the same content
  5. See that no error diagnostics are published

  1. To make sure that the syntax is valid considering the project setup, compile the code using the following command, which is identical to the one in.ccls
clang -I/usr/GNUstep/Local/Library/Headers \
      -L/usr/GNUstep/Local/Library/Libraries \
      -lgnustep-base -lobjc \
      -fobjc-runtime=gnustep-2.0 \
      ./src/main.m  -o MyClassTest
  1. Run the MyClassTest executable. See that it is successful

System information

  • ccls version: 0.20190823.6-1~ubuntu1.20.04.1 (result of ccls --version)
  • clang version: 10.0.0-4ubuntu1
  • OS: Ubuntu 20
  • Editor: Monaco (can be any)
  • Language client (and version): Monaco-langaugeClient 0.18.1 (can be any)
@Allless
Copy link
Author

Allless commented Aug 27, 2024

Debug logs


12:22:10 ccls           initialize.cc:262 I initialize in directory /project with uri file:///project
12:22:10 ccls           initialize.cc:285 I initializationOptions: {"compilationDatabaseCommand":"","compilationDatabaseDirectory":"","cache":{"directory":".ccls-cache","format":"binary","hierarchicalPath":false,"retainInMemory":2},"capabilities":{"documentOnTypeFormattingProvider":{"firstTriggerCharacter":"}","moreTriggerCharacter":[]},"foldingRangeProvider":true,"workspace":{"workspaceFolders":{"supported":true,"changeNotifications":true}}},"clang":{"excludeArgs":[],"extraArgs":[],"pathMappings":[],"resourceDir":""},"client":{"diagnosticsRelatedInformation":true,"hierarchicalDocumentSymbolSupport":true,"linkSupport":true,"snippetSupport":true},"codeLens":{"localVariables":true},"completion":{"caseSensitivity":2,"detailedLabel":true,"dropOldRequests":true,"duplicateOptional":true,"filterAndSort":true,"include":{"blacklist":[],"maxPathSize":30,"suffixWhitelist":[".h",".hpp",".hh",".inc"],"whitelist":[]},"maxNum":100},"diagnostics":{"blacklist":[],"onChange":1000,"onOpen":0,"onSave":0,"spellChecking":true,"whitelist":[]},"highlight":{"largeFileSize":2097152,"lsRanges":false,"blacklist":[],"whitelist":[]},"index":{"blacklist":[],"comments":2,"initialNoLinkage":false,"initialBlacklist":[],"initialWhitelist":[],"maxInitializerLines":5,"multiVersion":0,"multiVersionBlacklist":[],"multiVersionWhitelist":[],"name":{"suppressUnwrittenScope":false},"onChange":false,"parametersInDeclarations":true,"threads":0,"trackDependency":2,"whitelist":[]},"request":{"timeout":5000},"session":{"maxNum":10},"workspaceSymbol":{"caseSensitivity":1,"maxNum":1000,"sort":true},"xref":{"maxNum":2000}}
12:22:10 ccls           initialize.cc:314 I use -resource-dir=/usr/include/clang/10
12:22:10 ccls           initialize.cc:347 I workspace folder: /project/
12:22:10 ccls              project.cc:280 I use /project/.ccls: clang -I/usr/GNUstep/Local/Library/Headers -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base -lobjc -fobjc-runtime=gnustep-2.0
12:22:10 ccls           initialize.cc:372 I start 12 indexers
12:22:10 ccls           initialize.cc:380 I dispatch initial index requests
12:22:10 ccls             pipeline.cc:474 I loaded project. Refresh semantic highlight for all working file.
12:22:10 indexer0         pipeline.cc:340 I parse /project/src/main.m
  clang -I/usr/GNUstep/Local/Library/Headers -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base -lobjc -fobjc-runtime=gnustep-2.0 /project/src/main.m -working-directory=/project/
12:22:10 indexer2         pipeline.cc:340 I parse /project/main.m
  clang -I/usr/GNUstep/Local/Library/Headers -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base -lobjc -fobjc-runtime=gnustep-2.0 /project/main.m -working-directory=/project/
12:22:10 indexer3         pipeline.cc:340 I parse /project/src/MyClass.m
  clang -I/usr/GNUstep/Local/Library/Headers -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base -lobjc -fobjc-runtime=gnustep-2.0 /project/src/MyClass.m -working-directory=/project/
12:22:10 indexer2         pipeline.cc:378 I store index for /project/main.m (delta: 0)
12:22:11 ccls            workspace.cc:72  I delete workspace folder file:///project: /project/
12:22:11 ccls            workspace.cc:91  I add workspace folder file:///project: /project/
12:22:11 ccls              project.cc:280 I use /project/.ccls: clang -I/usr/GNUstep/Local/Library/Headers -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base -lobjc -fobjc-runtime=gnustep-2.0
12:22:11 ccls         sema_manager.cc:743 I clear all sessions
12:22:11 ccls             pipeline.cc:474 I loaded project. Refresh semantic highlight for all working file.
12:22:11 indexer5         pipeline.cc:340 I parse /project/src/main.m
  clang -I/usr/GNUstep/Local/Library/Headers -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base -lobjc -fobjc-runtime=gnustep-2.0 /project/src/main.m -working-directory=/project/
12:22:11 indexer8         pipeline.cc:340 I parse /project/src/MyClass.m
  clang -I/usr/GNUstep/Local/Library/Headers -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base -lobjc -fobjc-runtime=gnustep-2.0 /project/src/MyClass.m -working-directory=/project/
12:22:11 indexer0         pipeline.cc:378 I store index for /project/src/MyClass2.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/local/include/dispatch/block.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/local/include/dispatch/object.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/posix_opt.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/unistd.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/sysmacros.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFStringEncodingExt.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/local/include/dispatch/io.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFSocket.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFNumber.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFCalendar.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stat.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFLocale.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBitVector.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/fcntl.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFURLAccess.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFAvailability.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/getopt_posix.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFRunLoop.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBase.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFStream.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLDocument.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFDateFormatter.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUserDefaults.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLSession.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/unistd_ext.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFByteOrder.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLProtocol.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFDictionary.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFSet.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFAttributedString.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLDownload.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLParser.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUbiquitousKeyValueStore.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSValueTransformer.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSTimeZone.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUUID.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSThread+GNUstepBase.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/confname.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSTask.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLProtectionSpace.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSStream+GNUstepBase.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLConnection.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/local/include/dispatch/data.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUndoManager.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/posix_types_64.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/posix_types.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFArray.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/linux/stddef.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSStream.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/linux/posix_types.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sysmacros.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/asm-generic/socket.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptStandardSuiteCommands.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/socket.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFUUID.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFError.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptCommandDescription.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptClassDescription.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFURL.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSProtocolChecker.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/socket.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSProgress.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPortCoder.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPortNameServer.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPersonNameComponentsFormatter.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFString.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPersonNameComponents.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/asm-generic/bitsperlong.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMetadata.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/bitsperlong.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMeasurementFormatter.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/getopt_core.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/local/include/dispatch/time.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/socket_type.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSLocale.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPortMessage.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CoreFoundation.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSSpellServer.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSKeyedArchiver.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/local/include/dispatch/group.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSJSONSerialization.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFTimeZone.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSOperation.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSOrderedSet.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSInvocationOperation.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLDTDNode.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/local/include/dispatch/once.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScanner.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSIndexPath.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSObjectScripting.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHost.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNull.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLError.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSNetServices+GNUstepBase.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPathUtilities.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNetServices.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSURL+GNUstepBase.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSLengthFormatter.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigthread.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSKeyValueCoding.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/fp-logb.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPropertyList.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/locale.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptCommand.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileManager.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLDTD.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/fp-fast.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSThread.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/math.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSItemProvider.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBundle.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSISO8601DateFormatter.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPort.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/asm-generic/param.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/stdc-predef.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSInvocation.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/local/include/dispatch/base.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHTTPCookie.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLResponse.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHashTable.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileWrapper.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/math-vector.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileVersion.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/ctype.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/local/include/dispatch/dispatch.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/local/include/os/generic_base.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/__stddef_max_align_t.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/inttypes.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDistributedNotificationCenter.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/inttypes.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSExtensionContext.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNumberFormatter.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSIndexSet.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/setjmp.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/param.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/setjmp.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFDate.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFilePresenter.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSComparisonPredicate.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/locale_t.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSRunLoop.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/long-double.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/asm-generic/errno-base.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAutoreleasePool.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/asm-generic/errno.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptSuiteRegistry.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/errno.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSData+GNUstepBase.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/linux/errno.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUserNotification.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/alloca.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/errno.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSCalendarDate+GNUstepBase.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBag.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/errno.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/stdarg.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSLock.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/linux/limits.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/libc-header-start.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSConnection.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/linux/param.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/stdio.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSZone.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/stack_t.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMapTable.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/stdint.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigaction.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/floatn-common.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/typesizes.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/endianness.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/locale.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /project/src/main.m (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/local/include/os/generic_unix_base.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSExpression.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptKeyValueCoding.h (delta: 0)
12:22:11 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLHandle.h (delta: 0)
12:22:11 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/stdint.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSEnumerator.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/waitstatus.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSByteCountFormatter.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/signum.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/Foundation.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSEnergyFormatter.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDecimalNumber.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/fcntl.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/time64.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/local_lim.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/gnu/stubs.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFXMLNode.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/assert.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/posix2_lim.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSLinguisticTagger.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHTTPCookieStorage.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GSVersionMacros.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/socket.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFormatter.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMethodSignature.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/runtime.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/local/include/dispatch/source.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCoder.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFXMLParser.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLElement.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileHandle.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/endian.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/struct_mutex.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLRequest.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/signum-generic.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/param.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/floatn.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/posix1_lim.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFTree.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSGarbageCollector.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSItemProviderReadingWriting.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stdint-intn.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/float.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMeasurement.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDistantObject.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/timesize.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/time_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPredicate.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMetadataAttributes.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stdlib-float.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLAuthenticationChallenge.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSObject+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNotification.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/string.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNotificationQueue.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/strings.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/encoding.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSBundle+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigcontext.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/time.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPointerFunctions.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDateInterval.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/uintn-identity.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSFileHandle+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /project/src/MyClass.m (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/time.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/gnu/stubs-64.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/stddef.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSAttributedString+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSRegularExpression.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sockaddr.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/wordsize.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAttributedString.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigstack.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSTextCheckingResult.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/ss_flags.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/FILE.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSOrthography.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSSortDescriptor.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/signal_ext.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/asm-generic/sockios.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLNode.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSError.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUnit.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUserActivity.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/mathcalls.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSArchiver.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/param.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GSConfig.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSData.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSSet.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSProcessInfo+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFCharacterSet.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAffineTransform.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSString.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/types.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSRange.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/local/include/os/object.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/objc.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCalendar.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptExecutionContext.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXPCConnection.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/stdlib.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHFSFileTypes.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/clock_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDateFormatter.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSArray.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/ucontext.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDate.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFNumberFormatter.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDateComponentsFormatter.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/objc-visibility.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSNumber+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSBackgroundActivityScheduler.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/timer_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDecimal.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/local/include/dispatch/queue.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/include/asm-generic/posix_types.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLNodeOptions.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCache.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURL.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCharacterSet.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__FILE.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/local/include/dispatch/semaphore.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptWhoseTests.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSSerialization.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSExtensionItem.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/features.h (delta: 0)
12:22:12 indexer0         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSGeometry.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/endian.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/message.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSException.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/byteswap.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptObjectSpecifiers.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLCredentialStorage.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptCoercionHandler.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/limits.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCalendarDate.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/limits.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/environments.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAppleEventDescriptor.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/Availability.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stdio_lim.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sys_errlist.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSTimer.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/signal.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/waitflags.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/select.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFPropertyList.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/select.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/FoundationLegacySwiftCompatibility.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLCredential.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSBundle.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/stdbool.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/slot.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/runtime-deprecated.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/FoundationErrors.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFData.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/sockios.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSByteOrder.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSObject.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSObjCRuntime.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GSBlocks.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/blocks_runtime.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileCoordinator.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSKeyValueObserving.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAppleScript.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPointerArray.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GSObjCRuntime.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCompoundPredicate.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLCache.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/objc-api.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/wchar.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSMutableString+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDebug.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSDebug+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSProcessInfo.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSTask+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSString+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAppleEventManager.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSArray+GNUstepBase.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDictionary.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBinaryHeap.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSClassDescription.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GNUstep.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSValue.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/cdefs.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDateIntervalFormatter.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSProxy.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDistributedLock.h (delta: 0)
12:22:12 indexer3         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSExtensionRequestHandling.h (delta: 0)
12:22:16 preamble     sema_manager.cc:734 I create session for /project/src/MyClass2.h
  clang -I/usr/GNUstep/Local/Library/Headers -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base -lobjc -fobjc-runtime=gnustep-2.0 /project/src/MyClass2.h -working-directory=/project/
12:22:16 indexer6         pipeline.cc:340 I parse /project/src/MyClass2.h
  clang -I/usr/GNUstep/Local/Library/Headers -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base -lobjc -fobjc-runtime=gnustep-2.0 /project/src/MyClass2.h -working-directory=/project/
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/once.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/semaphore.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/time.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/base.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stat.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/getopt_posix.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/environments.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/posix_opt.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/unistd.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/sysmacros.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/dispatch.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFUUID.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFTree.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFSocket.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFNumberFormatter.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFDateFormatter.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/fcntl.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFDate.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/unistd_ext.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFCalendar.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFByteOrder.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFLocale.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFCharacterSet.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBinaryHeap.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFDictionary.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFAvailability.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFURLAccess.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBase.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CoreFoundation.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXPCConnection.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLDTD.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSValueTransformer.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUUID.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUserDefaults.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLSession.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLProtocol.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLError.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLCredential.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLCache.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLAuthenticationChallenge.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUserActivity.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUnit.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSTimeZone.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSTextCheckingResult.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSTask.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUbiquitousKeyValueStore.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptSuiteRegistry.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptObjectSpecifiers.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptCommandDescription.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScanner.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSProgress.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/object.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPortNameServer.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/asm-generic/bitsperlong.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/bitsperlong.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/asm-generic/posix_types.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/posix_types_64.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/posix_types.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/linux/stddef.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/linux/posix_types.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/asm-generic/socket.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/socket.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSStream.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/socket.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/getopt_core.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPortMessage.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPortCoder.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPersonNameComponents.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSOrderedSet.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSObjectScripting.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLNodeOptions.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLDownload.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNumberFormatter.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNull.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSNetServices+GNUstepBase.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSStream+GNUstepBase.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNetServices.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMeasurement.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSLocale.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSLinguisticTagger.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/fcntl.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSLengthFormatter.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSKeyValueObserving.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSKeyedArchiver.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSJSONSerialization.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSOperation.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSInvocationOperation.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFData.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/socket_type.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSInvocation.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSIndexPath.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFNumber.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLParser.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHashTable.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/queue.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileWrapper.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileVersion.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFilePresenter.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPathUtilities.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSFileHandle+GNUstepBase.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileHandle.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSURL+GNUstepBase.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLHandle.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/__stddef_max_align_t.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSKeyValueCoding.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigstack.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/setjmp.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDistributedNotificationCenter.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/setjmp.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLResponse.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigthread.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sysmacros.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/fp-logb.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/locale.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSArchiver.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/float.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/fp-fast.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/math.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPort.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/asm-generic/param.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/asm-generic/errno-base.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFAttributedString.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/cdefs.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUserNotification.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/asm-generic/errno.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/errno.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/linux/errno.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/errno.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/io.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/linux/limits.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSError.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSClassDescription.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/signal_ext.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/stdio.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLCredentialStorage.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/math-vector.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSProxy.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSExtensionContext.h (delta: 1)
12:22:17 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCoder.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigaction.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/ctype.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSItemProvider.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/endianness.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDateIntervalFormatter.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHTTPCookieStorage.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/inttypes.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMetadataAttributes.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSRunLoop.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/local/include/os/generic_unix_base.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFPropertyList.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLRequest.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/waitstatus.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/signum.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSException.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/locale_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/mathcalls.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/param.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/posix2_lim.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSString+GNUstepBase.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSRegularExpression.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLDocument.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLNode.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAttributedString.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/long-double.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/data.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/socket.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/alloca.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptKeyValueCoding.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GSVersionMacros.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/endian.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/stdarg.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFStream.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/signum-generic.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/param.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/stack_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/runtime.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/libc-header-start.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/posix1_lim.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stdint-intn.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSTask+GNUstepBase.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURL.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPredicate.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/linux/param.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/time_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSSortDescriptor.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/Availability.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptClassDescription.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHFSFileTypes.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/asm-generic/sockios.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/stdint.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/stdint.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/wchar.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSEnergyFormatter.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigcontext.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHTTPCookie.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/local_lim.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSObject+GNUstepBase.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/locale.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSSet.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSValue.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/sockios.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/gnu/stubs-64.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDecimalNumber.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /project/src/MyClass2.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFRunLoop.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptExecutionContext.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFStringEncodingExt.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/stddef.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/objc-visibility.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMeasurementFormatter.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFSet.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/FILE.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDecimal.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFArray.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileManager.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/Foundation.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSMutableString+GNUstepBase.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSCalendarDate+GNUstepBase.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSSpellServer.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSNumber+GNUstepBase.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAppleEventManager.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSExpression.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/time64.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLConnection.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sockaddr.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMethodSignature.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/wordsize.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSIndexSet.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/assert.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/objc.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDateInterval.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/asm/param.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAppleEventDescriptor.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSISO8601DateFormatter.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/types.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/block.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/stdlib.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFTimeZone.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/clock_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/ucontext.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/source.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFXMLParser.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptWhoseTests.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/timer_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLDTDNode.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__FILE.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptStandardSuiteCommands.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/features.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMapTable.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/endian.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSAttributedString+GNUstepBase.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/byteswap.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/struct_mutex.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/floatn.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSZone.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSThread+GNUstepBase.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSItemProviderReadingWriting.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCalendarDate.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/limits.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptCoercionHandler.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSTimer.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/local/include/os/object.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFString.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFXMLNode.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSHost.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/limits.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/timesize.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSXMLElement.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/floatn-common.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSExtensionRequestHandling.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSGarbageCollector.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stdio_lim.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSScriptCommand.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sys_errlist.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPropertyList.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/signal.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/waitflags.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/stdlib-float.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/string.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/select.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/time.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/stdbool.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSUndoManager.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/slot.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/message.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/runtime-deprecated.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/FoundationErrors.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFileCoordinator.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSObject.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/local/include/dispatch/group.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSObjCRuntime.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GNUstep.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GSBlocks.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBitVector.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPersonNameComponentsFormatter.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSSerialization.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBag.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSOrthography.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/ss_flags.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/blocks_runtime.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h (delta: 1)
12:22:18 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCache.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/confname.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GSObjCRuntime.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSURLProtectionSpace.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSThread.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDate.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDateFormatter.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFBundle.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/typesizes.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCalendar.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFError.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSProcessInfo.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSConnection.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSMetadata.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSBundle+GNUstepBase.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPointerArray.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/errno.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSBundle.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/objc-api.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/FoundationLegacySwiftCompatibility.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDebug.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/CoreFoundation/CFURL.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/objc/encoding.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSDebug+GNUstepBase.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSProcessInfo+GNUstepBase.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAffineTransform.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSProtocolChecker.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSGeometry.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/sys/select.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/strings.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCompoundPredicate.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSString.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDateComponentsFormatter.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSRange.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAppleScript.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSEnumerator.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/local/include/os/generic_base.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSArray.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSArray+GNUstepBase.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/GSConfig.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDistributedLock.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/uintn-identity.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDictionary.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/gnu/stubs.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSAutoreleasePool.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSBackgroundActivityScheduler.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSByteCountFormatter.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSFormatter.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSByteOrder.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/lib/llvm-10/lib/clang/10.0.0/include/inttypes.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSCharacterSet.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNotificationQueue.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSComparisonPredicate.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/time.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSPointerFunctions.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSData.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/GNUstepBase/NSData+GNUstepBase.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSDistantObject.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/include/stdc-predef.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSLock.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSNotification.h (delta: 1)
12:22:19 indexer6         pipeline.cc:378 I store index for /usr/GNUstep/Local/Library/Headers/Foundation/NSExtensionItem.h (delta: 1)

@Allless
Copy link
Author

Allless commented Aug 27, 2024

Client-server communication when opening MyClass2.h

[
    {
        "sender": "client",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"method\": \"initialize\",\n  \"params\": {\n    \"processId\": null,\n    \"clientInfo\": {\n      \"name\": \"Monaco\"\n    },\n    \"locale\": \"en-US\",\n    \"rootPath\": \"/usercode/FILESYSTEM\",\n    \"rootUri\": \"file:///usercode/FILESYSTEM\",\n    \"capabilities\": {\n      \"workspace\": {\n        \"applyEdit\": true,\n        \"workspaceEdit\": {\n          \"documentChanges\": true,\n          \"resourceOperations\": [\n            \"create\",\n            \"rename\",\n            \"delete\"\n          ],\n          \"failureHandling\": \"textOnlyTransactional\",\n          \"normalizesLineEndings\": true,\n          \"changeAnnotationSupport\": {\n            \"groupsOnLabel\": true\n          }\n        },\n        \"didChangeConfiguration\": {\n          \"dynamicRegistration\": true\n        },\n        \"didChangeWatchedFiles\": {\n          \"dynamicRegistration\": true\n        },\n        \"symbol\": {\n          \"dynamicRegistration\": true,\n          \"symbolKind\": {\n            \"valueSet\": [\n              1,\n              2,\n              3,\n              4,\n              5,\n              6,\n              7,\n              8,\n              9,\n              10,\n              11,\n              12,\n              13,\n              14,\n              15,\n              16,\n              17,\n              18,\n              19,\n              20,\n              21,\n              22,\n              23,\n              24,\n              25,\n              26\n            ]\n          },\n          \"tagSupport\": {\n            \"valueSet\": [\n              1\n            ]\n          }\n        },\n        \"codeLens\": {\n          \"refreshSupport\": true\n        },\n        \"executeCommand\": {\n          \"dynamicRegistration\": true\n        },\n        \"configuration\": true,\n        \"workspaceFolders\": true,\n        \"semanticTokens\": {\n          \"refreshSupport\": true\n        }\n      },\n      \"textDocument\": {\n        \"publishDiagnostics\": {\n          \"relatedInformation\": true,\n          \"versionSupport\": false,\n          \"tagSupport\": {\n            \"valueSet\": [\n              1,\n              2\n            ]\n          },\n          \"codeDescriptionSupport\": true,\n          \"dataSupport\": true\n        },\n        \"synchronization\": {\n          \"dynamicRegistration\": true,\n          \"willSave\": true,\n          \"willSaveWaitUntil\": true,\n          \"didSave\": true\n        },\n        \"completion\": {\n          \"dynamicRegistration\": true,\n          \"contextSupport\": true,\n          \"completionItem\": {\n            \"snippetSupport\": true,\n            \"commitCharactersSupport\": true,\n            \"documentationFormat\": [\n              \"markdown\",\n              \"plaintext\"\n            ],\n            \"deprecatedSupport\": true,\n            \"preselectSupport\": true,\n            \"tagSupport\": {\n              \"valueSet\": [\n                1\n              ]\n            },\n            \"insertReplaceSupport\": true,\n            \"resolveSupport\": {\n              \"properties\": [\n                \"documentation\",\n                \"detail\",\n                \"additionalTextEdits\"\n              ]\n            },\n            \"insertTextModeSupport\": {\n              \"valueSet\": [\n                1,\n                2\n              ]\n            }\n          },\n          \"completionItemKind\": {\n            \"valueSet\": [\n              1,\n              2,\n              3,\n              4,\n              5,\n              6,\n              7,\n              8,\n              9,\n              10,\n              11,\n              12,\n              13,\n              14,\n              15,\n              16,\n              17,\n              18,\n              19,\n              20,\n              21,\n              22,\n              23,\n              24,\n              25\n            ]\n          }\n        },\n        \"hover\": {\n          \"dynamicRegistration\": true,\n          \"contentFormat\": [\n            \"markdown\",\n            \"plaintext\"\n          ]\n        },\n        \"signatureHelp\": {\n          \"dynamicRegistration\": true,\n          \"signatureInformation\": {\n            \"documentationFormat\": [\n              \"markdown\",\n              \"plaintext\"\n            ],\n            \"parameterInformation\": {\n              \"labelOffsetSupport\": true\n            },\n            \"activeParameterSupport\": true\n          },\n          \"contextSupport\": true\n        },\n        \"definition\": {\n          \"dynamicRegistration\": true,\n          \"linkSupport\": true\n        },\n        \"references\": {\n          \"dynamicRegistration\": true\n        },\n        \"documentHighlight\": {\n          \"dynamicRegistration\": true\n        },\n        \"documentSymbol\": {\n          \"dynamicRegistration\": true,\n          \"symbolKind\": {\n            \"valueSet\": [\n              1,\n              2,\n              3,\n              4,\n              5,\n              6,\n              7,\n              8,\n              9,\n              10,\n              11,\n              12,\n              13,\n              14,\n              15,\n              16,\n              17,\n              18,\n              19,\n              20,\n              21,\n              22,\n              23,\n              24,\n              25,\n              26\n            ]\n          },\n          \"hierarchicalDocumentSymbolSupport\": true,\n          \"tagSupport\": {\n            \"valueSet\": [\n              1\n            ]\n          },\n          \"labelSupport\": true\n        },\n        \"codeAction\": {\n          \"dynamicRegistration\": true,\n          \"isPreferredSupport\": true,\n          \"disabledSupport\": true,\n          \"dataSupport\": true,\n          \"resolveSupport\": {\n            \"properties\": [\n              \"edit\"\n            ]\n          },\n          \"codeActionLiteralSupport\": {\n            \"codeActionKind\": {\n              \"valueSet\": [\n                \"\",\n                \"quickfix\",\n                \"refactor\",\n                \"refactor.extract\",\n                \"refactor.inline\",\n                \"refactor.rewrite\",\n                \"source\",\n                \"source.organizeImports\"\n              ]\n            }\n          },\n          \"honorsChangeAnnotations\": false\n        },\n        \"codeLens\": {\n          \"dynamicRegistration\": true\n        },\n        \"formatting\": {\n          \"dynamicRegistration\": true\n        },\n        \"rangeFormatting\": {\n          \"dynamicRegistration\": true\n        },\n        \"onTypeFormatting\": {\n          \"dynamicRegistration\": true\n        },\n        \"rename\": {\n          \"dynamicRegistration\": true,\n          \"prepareSupport\": true,\n          \"prepareSupportDefaultBehavior\": 1,\n          \"honorsChangeAnnotations\": true\n        },\n        \"documentLink\": {\n          \"dynamicRegistration\": true,\n          \"tooltipSupport\": true\n        },\n        \"typeDefinition\": {\n          \"dynamicRegistration\": true,\n          \"linkSupport\": true\n        },\n        \"implementation\": {\n          \"dynamicRegistration\": true,\n          \"linkSupport\": true\n        },\n        \"colorProvider\": {\n          \"dynamicRegistration\": true\n        },\n        \"foldingRange\": {\n          \"dynamicRegistration\": true,\n          \"rangeLimit\": 5000,\n          \"lineFoldingOnly\": true\n        },\n        \"declaration\": {\n          \"dynamicRegistration\": true,\n          \"linkSupport\": true\n        },\n        \"semanticTokens\": {\n          \"dynamicRegistration\": true,\n          \"tokenTypes\": [\n            \"namespace\",\n            \"type\",\n            \"class\",\n            \"enum\",\n            \"interface\",\n            \"struct\",\n            \"typeParameter\",\n            \"parameter\",\n            \"variable\",\n            \"property\",\n            \"enumMember\",\n            \"event\",\n            \"function\",\n            \"method\",\n            \"macro\",\n            \"keyword\",\n            \"modifier\",\n            \"comment\",\n            \"string\",\n            \"number\",\n            \"regexp\",\n            \"operator\"\n          ],\n          \"tokenModifiers\": [\n            \"declaration\",\n            \"definition\",\n            \"readonly\",\n            \"static\",\n            \"deprecated\",\n            \"abstract\",\n            \"async\",\n            \"modification\",\n            \"documentation\",\n            \"defaultLibrary\"\n          ],\n          \"formats\": [\n            \"relative\"\n          ],\n          \"requests\": {\n            \"range\": true,\n            \"full\": {\n              \"delta\": true\n            }\n          },\n          \"multilineTokenSupport\": false,\n          \"overlappingTokenSupport\": false\n        },\n        \"callHierarchy\": {\n          \"dynamicRegistration\": true\n        }\n      },\n      \"window\": {\n        \"showMessage\": {\n          \"messageActionItem\": {\n            \"additionalPropertiesSupport\": true\n          }\n        },\n        \"showDocument\": {\n          \"support\": true\n        },\n        \"workDoneProgress\": true\n      },\n      \"general\": {\n        \"regularExpressions\": {\n          \"engine\": \"ECMAScript\",\n          \"version\": \"ES2020\"\n        },\n        \"markdown\": {\n          \"parser\": \"marked\",\n          \"version\": \"1.1.0\"\n        }\n      }\n    },\n    \"trace\": \"off\",\n    \"workspaceFolders\": [\n      {\n        \"uri\": \"file:///usercode/FILESYSTEM\",\n        \"name\": \"file:///usercode/FILESYSTEM\"\n      }\n    ]\n  }\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"result\": {\n    \"capabilities\": {\n      \"textDocumentSync\": {\n        \"openClose\": true,\n        \"change\": 2,\n        \"willSave\": false,\n        \"willSaveWaitUntil\": false,\n        \"save\": {\n          \"includeText\": false\n        }\n      },\n      \"hoverProvider\": true,\n      \"completionProvider\": {\n        \"resolveProvider\": false,\n        \"triggerCharacters\": [\n          \".\",\n          \":\",\n          \">\",\n          \"#\",\n          \"<\",\n          \"\\\"\",\n          \"/\"\n        ]\n      },\n      \"signatureHelpProvider\": {\n        \"triggerCharacters\": [\n          \"(\",\n          \",\"\n        ]\n      },\n      \"declarationProvider\": true,\n      \"definitionProvider\": true,\n      \"implementationProvider\": true,\n      \"typeDefinitionProvider\": true,\n      \"referencesProvider\": true,\n      \"documentHighlightProvider\": true,\n      \"documentSymbolProvider\": true,\n      \"workspaceSymbolProvider\": true,\n      \"codeActionProvider\": {\n        \"codeActionKinds\": [\n          \"quickfix\"\n        ]\n      },\n      \"codeLensProvider\": {\n        \"resolveProvider\": false\n      },\n      \"documentFormattingProvider\": true,\n      \"documentRangeFormattingProvider\": true,\n      \"documentOnTypeFormattingProvider\": {\n        \"firstTriggerCharacter\": \"}\",\n        \"moreTriggerCharacter\": []\n      },\n      \"renameProvider\": true,\n      \"documentLinkProvider\": {\n        \"resolveProvider\": true\n      },\n      \"foldingRangeProvider\": true,\n      \"executeCommandProvider\": {\n        \"commands\": [\n          \"ccls.xref\"\n        ]\n      },\n      \"workspace\": {\n        \"workspaceFolders\": {\n          \"supported\": true,\n          \"changeNotifications\": true\n        }\n      }\n    }\n  }\n}"
        }
    },
    {
        "sender": "client",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"initialized\",\n  \"params\": {}\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"client/registerCapability\",\n  \"id\": 0,\n  \"params\": {\n    \"registrations\": [\n      {\n        \"id\": \"didChangeWatchedFiles\",\n        \"method\": \"workspace/didChangeWatchedFiles\",\n        \"registerOptions\": {\n          \"watchers\": [\n            {\n              \"globPattern\": \"**/*\"\n            }\n          ]\n        }\n      }\n    ]\n  }\n}"
        }
    },
    {
        "sender": "client",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"workspace/didChangeWorkspaceFolders\",\n  \"params\": {\n    \"event\": {\n      \"added\": [\n        {\n          \"uri\": \"file:///usercode/FILESYSTEM\",\n          \"name\": \"file:///usercode/FILESYSTEM\"\n        }\n      ],\n      \"removed\": [\n        {\n          \"uri\": \"file:///usercode/FILESYSTEM\",\n          \"name\": \"file:///usercode/FILESYSTEM\"\n        }\n      ]\n    }\n  }\n}"
        }
    },
    {
        "sender": "client",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 0,\n  \"result\": null\n}"
        }
    },
    {
        "sender": "client",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"textDocument/didOpen\",\n  \"params\": {\n    \"textDocument\": {\n      \"uri\": \"file:///usercode/FILESYSTEM/src/MyClass2.h\",\n      \"languageId\": \"c\",\n      \"version\": 1,\n      \"text\": \"#import <Foundation/Foundation.h>\\n\\n@interface MyClass : NSObject\\n\\n- (void)sayHello;\\n\\n@end\\n\\n@implementation MyClass\\n\\n- (void)sayHello {\\n    NSLog(@\\\"Hello, World!\\\");\\n}\\n\\n@end\\n\"\n    }\n  }\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"$ccls/publishSkippedRanges\",\n  \"params\": {\n    \"uri\": \"file:///usercode/FILESYSTEM/src/MyClass2.h\",\n    \"skippedRanges\": []\n  }\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"$ccls/publishSemanticHighlight\",\n  \"params\": {\n    \"uri\": \"file:///usercode/FILESYSTEM/src/MyClass2.h\",\n    \"symbols\": [\n      {\n        \"id\": 0,\n        \"parentKind\": 0,\n        \"kind\": 11,\n        \"storage\": 0,\n        \"ranges\": [\n          {\n            \"L\": 56,\n            \"R\": 64\n          }\n        ],\n        \"lsRanges\": []\n      },\n      {\n        \"id\": 2,\n        \"parentKind\": 11,\n        \"kind\": 6,\n        \"storage\": 0,\n        \"ranges\": [\n          {\n            \"L\": 74,\n            \"R\": 82\n          },\n          {\n            \"L\": 124,\n            \"R\": 132\n          }\n        ],\n        \"lsRanges\": []\n      },\n      {\n        \"id\": 1,\n        \"parentKind\": 1,\n        \"kind\": 11,\n        \"storage\": 0,\n        \"ranges\": [\n          {\n            \"L\": 46,\n            \"R\": 53\n          },\n          {\n            \"L\": 107,\n            \"R\": 114\n          }\n        ],\n        \"lsRanges\": []\n      },\n      {\n        \"id\": 1,\n        \"parentKind\": 0,\n        \"kind\": 12,\n        \"storage\": 0,\n        \"ranges\": [\n          {\n            \"L\": 139,\n            \"R\": 144\n          }\n        ],\n        \"lsRanges\": []\n      }\n    ]\n  }\n}"
        }
    },
    {
        "sender": "client",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 1,\n  \"method\": \"textDocument/documentLink\",\n  \"params\": {\n    \"textDocument\": {\n      \"uri\": \"file:///usercode/FILESYSTEM/src/MyClass2.h\"\n    }\n  }\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 1,\n  \"result\": [\n    {\n      \"range\": {\n        \"start\": {\n          \"line\": 0,\n          \"character\": 9\n        },\n        \"end\": {\n          \"line\": 0,\n          \"character\": 32\n        }\n      },\n      \"target\": \"file:///usr/GNUstep/Local/Library/Headers/Foundation/Foundation.h\"\n    }\n  ]\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"textDocument/publishDiagnostics\",\n  \"params\": {\n    \"uri\": \"file:///usercode/FILESYSTEM/src/MyClass2.h\",\n    \"diagnostics\": [\n      {\n        \"range\": {\n          \"start\": {\n            \"line\": 2,\n            \"character\": 0\n          },\n          \"end\": {\n            \"line\": 2,\n            \"character\": 1\n          }\n        },\n        \"severity\": 1,\n        \"code\": 4,\n        \"source\": \"ccls\",\n        \"message\": \"expected identifier or '('\",\n        \"relatedInformation\": []\n      },\n      {\n        \"range\": {\n          \"start\": {\n            \"line\": 6,\n            \"character\": 0\n          },\n          \"end\": {\n            \"line\": 6,\n            \"character\": 1\n          }\n        },\n        \"severity\": 1,\n        \"code\": 4,\n        \"source\": \"ccls\",\n        \"message\": \"expected identifier or '('\",\n        \"relatedInformation\": []\n      },\n      {\n        \"range\": {\n          \"start\": {\n            \"line\": 14,\n            \"character\": 0\n          },\n          \"end\": {\n            \"line\": 14,\n            \"character\": 1\n          }\n        },\n        \"severity\": 1,\n        \"code\": 4,\n        \"source\": \"ccls\",\n        \"message\": \"expected identifier or '('\",\n        \"relatedInformation\": []\n      }\n    ]\n  }\n}"
        }
    },
    {
        "sender": "client",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 2,\n  \"method\": \"textDocument/codeLens\",\n  \"params\": {\n    \"textDocument\": {\n      \"uri\": \"file:///usercode/FILESYSTEM/src/MyClass2.h\"\n    }\n  }\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 2,\n  \"result\": [\n    {\n      \"range\": {\n        \"start\": {\n          \"line\": 8,\n          \"character\": 16\n        },\n        \"end\": {\n          \"line\": 8,\n          \"character\": 23\n        }\n      },\n      \"command\": {\n        \"title\": \"2 refs\",\n        \"command\": \"ccls.xref\",\n        \"arguments\": [\n          \"{\\\"usr\\\":504677913038942183,\\\"kind\\\":2,\\\"field\\\":\\\"uses\\\"}\"\n        ]\n      }\n    },\n    {\n      \"range\": {\n        \"start\": {\n          \"line\": 4,\n          \"character\": 8\n        },\n        \"end\": {\n          \"line\": 4,\n          \"character\": 16\n        }\n      },\n      \"command\": {\n        \"title\": \"1 ref\",\n        \"command\": \"ccls.xref\",\n        \"arguments\": [\n          \"{\\\"usr\\\":12863261884341716873,\\\"kind\\\":3,\\\"field\\\":\\\"uses\\\"}\"\n        ]\n      }\n    },\n    {\n      \"range\": {\n        \"start\": {\n          \"line\": 2,\n          \"character\": 11\n        },\n        \"end\": {\n          \"line\": 2,\n          \"character\": 18\n        }\n      },\n      \"command\": {\n        \"title\": \"2 refs\",\n        \"command\": \"ccls.xref\",\n        \"arguments\": [\n          \"{\\\"usr\\\":504677913038942183,\\\"kind\\\":2,\\\"field\\\":\\\"uses\\\"}\"\n        ]\n      }\n    },\n    {\n      \"range\": {\n        \"start\": {\n          \"line\": 10,\n          \"character\": 8\n        },\n        \"end\": {\n          \"line\": 10,\n          \"character\": 16\n        }\n      },\n      \"command\": {\n        \"title\": \"1 ref\",\n        \"command\": \"ccls.xref\",\n        \"arguments\": [\n          \"{\\\"usr\\\":12863261884341716873,\\\"kind\\\":3,\\\"field\\\":\\\"uses\\\"}\"\n        ]\n      }\n    }\n  ]\n}"
        }
    },
    {
        "sender": "client",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 3,\n  \"method\": \"textDocument/foldingRange\",\n  \"params\": {\n    \"textDocument\": {\n      \"uri\": \"file:///usercode/FILESYSTEM/src/MyClass2.h\"\n    }\n  }\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 3,\n  \"result\": [\n    {\n      \"startLine\": 8,\n      \"startCharacter\": 0,\n      \"endLine\": 14,\n      \"endCharacter\": 1,\n      \"kind\": \"region\"\n    },\n    {\n      \"startLine\": 4,\n      \"startCharacter\": 0,\n      \"endLine\": 4,\n      \"endCharacter\": 17,\n      \"kind\": \"region\"\n    },\n    {\n      \"startLine\": 2,\n      \"startCharacter\": 0,\n      \"endLine\": 6,\n      \"endCharacter\": 4,\n      \"kind\": \"region\"\n    },\n    {\n      \"startLine\": 10,\n      \"startCharacter\": 0,\n      \"endLine\": 12,\n      \"endCharacter\": 1,\n      \"kind\": \"region\"\n    }\n  ]\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"$ccls/publishSkippedRanges\",\n  \"params\": {\n    \"uri\": \"file:///usercode/FILESYSTEM/src/MyClass2.h\",\n    \"skippedRanges\": []\n  }\n}"
        }
    },
    {
        "sender": "server",
        "message": {
            "message": "{\n  \"jsonrpc\": \"2.0\",\n  \"method\": \"$ccls/publishSemanticHighlight\",\n  \"params\": {\n    \"uri\": \"file:///usercode/FILESYSTEM/src/MyClass2.h\",\n    \"symbols\": []\n  }\n}"
        }
    }
]

@Allless
Copy link
Author

Allless commented Aug 27, 2024

I am unsure if this is an issue on the ccls side, or perhaps, related to my configuration. But at least I'd expect not to get error highlighting if the code can be compiled using the same command.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant