Skip to content

Commit 7feb606

Browse files
committed
Xcode 11 Beta update
1 parent db3ca2d commit 7feb606

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

Kotlin.ideplugin/Contents/Info.plist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<string>26355AE5-C605-4A56-A79B-AD4207EA18DD</string>
4040
<string>D7881182-AD00-4C36-A94D-F45FC9B0CF85</string>
4141
<string>72F7D751-F810-43B8-A53F-1F1DFD74FC54</string>
42+
<string>07BAA045-2DD3-489F-B232-D1D4F8B92D2D</string>
4243
</array>
4344
<key>XCPluginHasUI</key>
4445
<false/>

Kotlin.ideplugin/Contents/Resources/konan_lldb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def __none(iterable, f):
286286
return not any(f(x) for x in iterable)
287287
if __none(self._children, lambda x: x.name() == name):
288288
return -1
289-
return (i for i,v in enumerate(self._children) if v.name() == name).next()
289+
return (i for i,v in enumerate(self._children) if v.name() == name).__next__()
290290

291291
def get_child_at_index(self, index):
292292
result = self._values[index]

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@ files shipped with Xcode. Xcode plugin file from [GraphQL](https://github.com/ap
6565
LLDB formatting originally comes from the Kotlin/Native project, source [konan_lldb.py](https://github.com/JetBrains/kotlin-native/blob/dbb162a4b523071f31913e888e212df344a1b61e/llvmDebugInfoC/src/scripts/konan_lldb.py), although the way data is grabbed has been heavily modified to better
6666
support an interactive debugger.
6767

68+
## Xcode 11 Beta
69+
70+
The current version of the plugin will still allow you to add breakpoints and run the debugger, but source code highlighting is not yet functional. When Xcode 11 releases
71+
we'll dig back into the situation.
72+
6873
## Coming Soon
6974

7075
### LLDB Formatter

0 commit comments

Comments
 (0)