diff options
author | Gaurav Jain <gaurav@gauravjain.org> | 2014-04-11 21:42:09 -0400 |
---|---|---|
committer | Gaurav Jain <gaurav@gauravjain.org> | 2014-04-11 21:42:09 -0400 |
commit | 68442d00f2a26d4dcdc1c711405ca9939343bb34 (patch) | |
tree | 23ac2a300e759a5a4e518aa2f3797be107c271db | |
parent | 3b6f1f340e9f9906cb1b3e1cd3254faf871004ec (diff) | |
download | pygments-68442d00f2a26d4dcdc1c711405ca9939343bb34.tar.gz |
Add function signatures after class implementation block
Function signatures should be correct parsed after an implementation block.
-rw-r--r-- | tests/examplefiles/objc_example2.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/examplefiles/objc_example2.m b/tests/examplefiles/objc_example2.m index 8cd9b060..b7a5a685 100644 --- a/tests/examplefiles/objc_example2.m +++ b/tests/examplefiles/objc_example2.m @@ -22,3 +22,6 @@ @synthesize lastModifiedDate; // implementation continues @end + ++ (void)f1:(NSString *)s1; ++ (void)f2:(NSString *)s2; |