Files
swift-mirror/test/SourceKit/SyntaxMapData/Inputs/syntaxmap-edit-disjoint-effect.swift
Nathan Hawes 5b82a25240 [SyntaxColoring] Fix losing syntax highlighting for a type or function declaration following an incomplete function decl missing a closing parenthesis
If an edit didn't intersect with an existing highlighted tokens but caused a
later highlighted token to change kind, syntax highlighting would be lost
between the edit and that token.

Resolves rdar://problem/33463141.
2017-09-14 21:36:13 -07:00

7 lines
86 B
Swift

func getIt
struct MyStruct {
func getChildStruct() -> String {
return ""
}
}