GDBDebugger.st
changeset 180 cd22cacfcdcb
parent 175 a04e1a36e888
child 185 4e1be69b39ce
--- a/GDBDebugger.st	Wed Mar 13 12:20:32 2019 +0000
+++ b/GDBDebugger.st	Wed Mar 13 13:50:45 2019 +0000
@@ -1216,6 +1216,18 @@
     ^ connection hasPendingEvents
 
     "Created: / 23-01-2019 / 20:38:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+nativeTargetHasFeature: aString
+    ^ connection nativeTargetFeatures includes:  aString
+
+    "Created: / 13-03-2019 / 12:53:38 / jv"
+!
+
+nativeTargetHasFeatureAsync
+    ^ self nativeTargetHasFeature: 'async'
+
+    "Created: / 13-03-2019 / 12:53:54 / jv"
 ! !
 
 !GDBDebugger methodsFor:'testing'!