c/clang:comment range
This commit is contained in:
@@ -2219,6 +2219,19 @@ func (*Cursor) wrapIsVariadic() (ret c.Uint) { return 0 }
|
||||
|
||||
func (c Cursor) IsVariadic() (ret c.Uint) { return c.wrapIsVariadic() }
|
||||
|
||||
/**
|
||||
* Given a cursor that represents a declaration, return the associated
|
||||
* comment's source range. The range may include multiple consecutive comments
|
||||
* with whitespace in between.
|
||||
*/
|
||||
// llgo:link (*Cursor).wrapCommentRange C.wrap_clang_Cursor_getCommentRange
|
||||
func (c *Cursor) wrapCommentRange(ret *SourceRange) {}
|
||||
|
||||
func (c Cursor) CommentRange() (loc SourceRange) {
|
||||
c.wrapCommentRange(&loc)
|
||||
return
|
||||
}
|
||||
|
||||
/**
|
||||
* Given a cursor that represents a declaration, return the associated
|
||||
* comment text, including comment markers.
|
||||
|
||||
Reference in New Issue
Block a user