Skip to content

Commit

Permalink
Enhance Objective-C message signature parser
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerd Knops committed Jan 17, 2012
1 parent 3c5778f commit 5a9e507
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Support/bin/tmctags
Expand Up @@ -302,8 +302,9 @@ sub extractMSig {
# print "<br>LINE : '$word'<br>\n";


$word=~s/\[[^\]]*\]//mg;
$word=~s/\([^\]]*\)//mg;
while($word=~s/\{[^\{\}]*\}//mg) {}
while($word=~s/\[[^\[\]]*\]//mg) {}
while($word=~s/\([^\(\)]*\)//mg) {}

$word=~s/\:\s*\S+\s*/:/mg;

Expand Down

0 comments on commit 5a9e507

Please sign in to comment.