This is an archive of the discontinued LLVM Phabricator instance.

[libclang] Add missing cursor kinds to python bindings.
ClosedPublic

Authored by ikudrin on Oct 17 2016, 6:27 AM.

Diff Detail

Repository
rL LLVM

Event Timeline

ikudrin updated this revision to Diff 74834.Oct 17 2016, 6:27 AM
ikudrin retitled this revision from to [libclang] Add missing cursor kinds to python bindings..
ikudrin updated this object.
ikudrin added a subscriber: cfe-commits.
asl added a subscriber: asl.Oct 17 2016, 7:42 AM
vsk accepted this revision.Oct 17 2016, 6:41 PM
vsk added a reviewer: vsk.
vsk added a subscriber: vsk.

Thanks for working on this!

Fwiw, I double-checked the API coverage with:

$ git grep -E "CXCursor_[a-zA-Z_0-9]+ *= *[0-9]+" | grep -Eo "[0-9]+" | sort -u | uniq | wc -l
204
$ git grep -E "CursorKind\([0-9]+\)" | wc -l
204

This revision is now accepted and ready to land.Oct 17 2016, 6:41 PM
This revision was automatically updated to reflect the committed changes.