We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eee681 commit aaa64cdCopy full SHA for aaa64cd
generate/tools/stats.sh
@@ -10,4 +10,8 @@ echo "Methods:"
10
awk '/type [a-zA-Z0-9_]+ interface {/,/}/' ./macos/*/*.gen.go | grep ')' | wc -l
11
echo
12
echo "Enums/constants:"
13
-cat ./macos/*/enumtypes.gen.go | grep -v '^\s*//' | grep -v '^\s*$' | grep -v '[\(\)]' | wc -l
+cat ./macos/*/enumtypes.gen.go | grep -v '^\s*//' | grep -v '^\s*$' | grep -v '[\(\)]' | wc -l
14
+echo
15
+echo "Structs:"
16
+find . -type f -name "*_structs.go" -exec grep '^type' {} + | wc -l
17
0 commit comments