Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,9 @@ class SourceKitDocument {
completionOptions.add(.key_HideLowPriority, value: 0)
completionOptions.add(.key_HideByName, value: 0)
completionOptions.add(.key_HideUnderscores, value: 0)
// Disable inner results because they might cause a second completion to occur in SourceKit, slowing down the measurements.
completionOptions.add(.key_AddInnerResults, value: 0)
completionOptions.add(.key_AddInnerOperators, value: 0)

// Set expected results to 200 to avoid inflating the time measurements by serialization time.
// To make sure that the expected result is in the results, filter by its base name.
Expand Down
183 changes: 0 additions & 183 deletions SourceKitStressTester/Sources/SwiftSourceKit/SwiftSourceKit.swift

This file was deleted.

Loading