[SourceKit] Move all options into a common options struct

With more options coming for incremental syntax parsing, the list of
arguments will grow way to large and unhandy, so just extract them into
one common struct.
This commit is contained in:
Alex Hoppen
2018-06-27 13:54:37 -07:00
parent 059d5d2396
commit 6e12a634a1
6 changed files with 82 additions and 100 deletions

View File

@@ -397,7 +397,7 @@ public:
void
codeCompleteSetCustom(ArrayRef<CustomCompletionInfo> completions) override;
void editorOpen(StringRef Name, llvm::MemoryBuffer *Buf, bool EnableSyntaxMap,
void editorOpen(StringRef Name, llvm::MemoryBuffer *Buf,
EditorConsumer &Consumer,
ArrayRef<const char *> Args) override;