================ @@ -0,0 +1,106 @@ +import argparse +from typing import TypedDict, Union, Optional, TextIO, NotRequired +from dataclasses import dataclass +import json + + +class Property(TypedDict): + name: str + type: str + default: NotRequired[str] + description: NotRequired[str] + + +class PropertyGroup(TypedDict): + path: str + """The full path to this group separated by dots""" ---------------- DavidSpickett wrote:
A "for example" would be nice. I assume `a.b.c`? https://github.com/llvm/llvm-project/pull/168245 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
