[PATCH] D51299: [python bindings] Expose template argument API for Type
kjteske created this revision. Herald added a subscriber: cfe-commits. Expose the C bindings for clang_Type_getNumTemplateArguments() and clang_Type_getTemplateArgumentAsType() in the python API. Repository: rC Clang https://reviews.llvm.org/D51299 Files: bindings/python/clang/cindex.py bindings/python/tests/cindex/test_type.py Index: bindings/python/tests/cindex/test_type.py === --- bindings/python/tests/cindex/test_type.py +++ bindings/python/tests/cindex/test_type.py @@ -436,3 +436,28 @@ self.assertIsNotNone(testInteger, "Could not find testInteger.") self.assertEqual(testInteger.type.get_address_space(), 2) + +def test_template_arguments(self): +source = """ +class Foo { +}; +template +class Template { +}; +Template instance; +int bar; +""" +tu = get_tu(source, lang='cpp') + +# Varible with a template argument. +cursor = get_cursor(tu, 'instance') +cursor_type = cursor.type +self.assertEqual(cursor.kind, CursorKind.VAR_DECL) +self.assertEqual(cursor_type.spelling, 'Template') +self.assertEqual(cursor_type.get_num_template_arguments(), 1) +template_type = cursor_type.get_template_argument_type(0) +self.assertEqual(template_type.spelling, 'Foo') + +# Variable without a template argument. +cursor = get_cursor(tu, 'bar') +self.assertEqual(cursor.get_num_template_arguments(), -1) Index: bindings/python/clang/cindex.py === --- bindings/python/clang/cindex.py +++ bindings/python/clang/cindex.py @@ -2248,6 +2248,12 @@ return res +def get_num_template_arguments(self): +return conf.lib.clang_Type_getNumTemplateArguments(self) + +def get_template_argument_type(self, num): +return conf.lib.clang_Type_getTemplateArgumentAsType(self, num) + def get_canonical(self): """ Return the canonical type for a Type. @@ -3992,6 +3998,15 @@ Type, Type.from_result), + ("clang_Type_getNumTemplateArguments", + [Type], + c_int), + + ("clang_Type_getTemplateArgumentAsType", + [Type, c_uint], + Type, + Type.from_result), + ("clang_Type_getOffsetOf", [Type, c_interop_string], c_longlong), Index: bindings/python/tests/cindex/test_type.py === --- bindings/python/tests/cindex/test_type.py +++ bindings/python/tests/cindex/test_type.py @@ -436,3 +436,28 @@ self.assertIsNotNone(testInteger, "Could not find testInteger.") self.assertEqual(testInteger.type.get_address_space(), 2) + +def test_template_arguments(self): +source = """ +class Foo { +}; +template +class Template { +}; +Template instance; +int bar; +""" +tu = get_tu(source, lang='cpp') + +# Varible with a template argument. +cursor = get_cursor(tu, 'instance') +cursor_type = cursor.type +self.assertEqual(cursor.kind, CursorKind.VAR_DECL) +self.assertEqual(cursor_type.spelling, 'Template') +self.assertEqual(cursor_type.get_num_template_arguments(), 1) +template_type = cursor_type.get_template_argument_type(0) +self.assertEqual(template_type.spelling, 'Foo') + +# Variable without a template argument. +cursor = get_cursor(tu, 'bar') +self.assertEqual(cursor.get_num_template_arguments(), -1) Index: bindings/python/clang/cindex.py === --- bindings/python/clang/cindex.py +++ bindings/python/clang/cindex.py @@ -2248,6 +2248,12 @@ return res +def get_num_template_arguments(self): +return conf.lib.clang_Type_getNumTemplateArguments(self) + +def get_template_argument_type(self, num): +return conf.lib.clang_Type_getTemplateArgumentAsType(self, num) + def get_canonical(self): """ Return the canonical type for a Type. @@ -3992,6 +3998,15 @@ Type, Type.from_result), + ("clang_Type_getNumTemplateArguments", + [Type], + c_int), + + ("clang_Type_getTemplateArgumentAsType", + [Type, c_uint], + Type, + Type.from_result), + ("clang_Type_getOffsetOf", [Type, c_interop_string], c_longlong), ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D51299: [python bindings] Expose template argument API for Type
kjteske added a comment. Thanks for the review @jbcoe , could you commit this for me? Repository: rC Clang https://reviews.llvm.org/D51299 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D45671: [python bindings] Fix Cursor.result_type for ObjC method declarations - Bug 36677
kjteske created this revision. Herald added a subscriber: cfe-commits. In cindex.py, Cursor.result_type called into the wrong libclang function, causing cursors for ObjC method declarations to return invalid result types. Fixes Bug 36677. Repository: rC Clang https://reviews.llvm.org/D45671 Files: bindings/python/clang/cindex.py bindings/python/tests/cindex/test_cursor.py Index: bindings/python/tests/cindex/test_cursor.py === --- bindings/python/tests/cindex/test_cursor.py +++ bindings/python/tests/cindex/test_cursor.py @@ -429,6 +429,18 @@ t = foo.result_type self.assertEqual(t.kind, TypeKind.INT) +def test_result_type_objc_method_decl(self): +code = """\ +@interface Interface : NSObject +-(void)voidMethod; +@end +""" +tu = get_tu(code, lang='objc') +cursor = get_cursor(tu, 'voidMethod') +result_type = cursor.result_type +self.assertEqual(cursor.kind, CursorKind.OBJC_INSTANCE_METHOD_DECL) +self.assertEqual(result_type.kind, TypeKind.VOID) + def test_availability(self): tu = get_tu('class A { A(A const&) = delete; };', lang='cpp') Index: bindings/python/clang/cindex.py === --- bindings/python/clang/cindex.py +++ bindings/python/clang/cindex.py @@ -1644,7 +1644,7 @@ def result_type(self): """Retrieve the Type of the result for this Cursor.""" if not hasattr(self, '_result_type'): -self._result_type = conf.lib.clang_getResultType(self.type) +self._result_type = conf.lib.clang_getCursorResultType(self) return self._result_type @@ -3568,6 +3568,11 @@ [Cursor, c_uint, c_uint], SourceRange), + ("clang_getCursorResultType", + [Cursor], + Type, + Type.from_result), + ("clang_getCursorSemanticParent", [Cursor], Cursor, Index: bindings/python/tests/cindex/test_cursor.py === --- bindings/python/tests/cindex/test_cursor.py +++ bindings/python/tests/cindex/test_cursor.py @@ -429,6 +429,18 @@ t = foo.result_type self.assertEqual(t.kind, TypeKind.INT) +def test_result_type_objc_method_decl(self): +code = """\ +@interface Interface : NSObject +-(void)voidMethod; +@end +""" +tu = get_tu(code, lang='objc') +cursor = get_cursor(tu, 'voidMethod') +result_type = cursor.result_type +self.assertEqual(cursor.kind, CursorKind.OBJC_INSTANCE_METHOD_DECL) +self.assertEqual(result_type.kind, TypeKind.VOID) + def test_availability(self): tu = get_tu('class A { A(A const&) = delete; };', lang='cpp') Index: bindings/python/clang/cindex.py === --- bindings/python/clang/cindex.py +++ bindings/python/clang/cindex.py @@ -1644,7 +1644,7 @@ def result_type(self): """Retrieve the Type of the result for this Cursor.""" if not hasattr(self, '_result_type'): -self._result_type = conf.lib.clang_getResultType(self.type) +self._result_type = conf.lib.clang_getCursorResultType(self) return self._result_type @@ -3568,6 +3568,11 @@ [Cursor, c_uint, c_uint], SourceRange), + ("clang_getCursorResultType", + [Cursor], + Type, + Type.from_result), + ("clang_getCursorSemanticParent", [Cursor], Cursor, ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[PATCH] D45671: [python bindings] Fix Cursor.result_type for ObjC method declarations - Bug 36677
kjteske added a comment. First time llvm contributor here, so no commit access. @jbcoe, can you commit this for me? Repository: rC Clang https://reviews.llvm.org/D45671 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits