delcypher added inline comments.

================
Comment at: lldb/examples/python/scripted_step.py:130
+    def stop_description(self, stream):
+        stream.Print("Simple step completed")
 
----------------
@jingham Thanks for implementing this. Is there a reason why the interface 
needs to act on a `stream` object? Wouldn't this be simpler

```
def stop_description(self) -> str:
   return "Simple step completed"
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D149692/new/

https://reviews.llvm.org/D149692

_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to