================
@@ -242,7 +245,7 @@ def qProcessInfo(self):
     def qHostInfo(self):
         return "ptrsize:8;endian:little;"
 
-    def qEcho(self):
+    def qEcho(self, _: int):
----------------
DavidSpickett wrote:

There is another class that adds the parameter:
```
            def qEcho(self, num):
                resp = "qEcho:" + str(num)
                if num >= 2:
                    # We have launched our program
                    self.started = True
                    return [resp, "T13"]

                return resp
```
For documentation purposes, just call the parameter "num" then. All calls to 
qEcho( are passing a number so it should be fine to add the parameter here.

https://github.com/llvm/llvm-project/pull/162172
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to