@@ -36,9 +36,11 @@ Options:
36
36
the specified directory, otherwise all classes found
37
37
are written to this directory at the top level
38
38
-m <m>, --color=<m> Set color settings, one of the below
39
- default: color output only if output is to a TTY
39
+ default: color output using ASNI color escapes only if output is to a TTY
40
40
never: no output is colored
41
- always: output to TTYs, pipes, and files are colored
41
+ always: color output to files, pipes, and TTYs using ASNI color escapes
42
+ html-hljs: output in HTML format annotated with hljs classes
43
+ html-lsp: output in HTML format annotated with LSP classes
42
44
-i <p>, --image=<p> Reference the mach-o image at path
43
45
by default, dump all classes in this image
44
46
otherwise may specify --class or --protocol
@@ -47,4 +49,22 @@ Options:
47
49
-j <N>, --jobs=<N> Allow N jobs at once
48
50
only applicable when specified with -a/--dyld_shared_cache
49
51
(defaults to number of processing core available)
52
+
53
+ --strip-protocol-conformance[=flag] Hide properties and methods that are required
54
+ by a protocol the type conforms to
55
+ (defaults to false)
56
+ --strip-overrides[=flag] Hide properties and methods that are inherited
57
+ from the class hierachy
58
+ (defaults to false)
59
+ --strip-duplicates[=flag] Hide duplicate occurrences of a property or method
60
+ (defaults to false)
61
+ --strip-synthesized[=flag] Hide methods and ivars that are synthesized from a property
62
+ (defaults to true)
63
+ --strip-ctor-method[=flag] Hide `.cxx_construct` method
64
+ (defaults to false)
65
+ --strip-dtor-method[=flag] Hide `.cxx_destruct` method
66
+ (defaults to false)
67
+ --add-symbol-comments[=flag] Add comments above each eligible declaration
68
+ with the symbol name and image path the object is found in
69
+ (defaults to false)
50
70
```
0 commit comments