xref: /Universal-ctags/Units/parser-perl.r/bug842077.pl.d/input.pl (revision a4cddfd915717819b7c6390f4a329376b57e55aa)
1# Bugs item #842077, was opened at 2003-11-14 10:57
2# Message generated for change (Tracker Item Submitted) made by Item Submitter
3# You can respond by visiting:
4# https://sourceforge.net/tracker/?func=detail&atid=106556&aid=842077&group_id=6556
5
6# Category: None
7# Group: None
8# Status: Open
9# Resolution: None
10# Priority: 5
11# Submitted By: Christian Reis (kiko_async)
12# Assigned to: Nobody/Anonymous (nobody)
13# Summary: wrong precedence applied to perl POD and "here document"
14
15# Initial Comment:
16# Basically, ctags stops parsing when it reaches code
17# with the syntax below:
18
19# ...
20$this->print_log(<<EOM);
21== Tinderbox Info
22...
23== End Tinderbox Client Info
24EOM
25# ...
26
27sub test {
28# This subroutine is missed when bug is present.
29}
30
31# It sounds to me like ctags thinks it's a POD comment
32# when it
33# isn't--wrong precedence of POD vs. here document.
34