Skip to content

Commit

Permalink
Adds indexing for submethod closes #2265
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ committed Aug 15, 2018
1 parent 499c481 commit a045e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htmlify.p6
Expand Up @@ -608,7 +608,7 @@ sub find-definitions(:$pod, :$origin, :$min-level = -1, :$url) {
:categories<operator>,
;
}
when 'sub'|'method'|'term'|'routine'|'trait' {
when 'sub'|'method'|'term'|'routine'|'trait'|'submethod' {
%attr = :kind<routine>,
:categories($subkinds),
;
Expand Down

4 comments on commit a045e53

@coke
Copy link
Collaborator

@coke coke commented on a045e53 Aug 15, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Look also for ‘sub method’ for 2 other cases

@JJ
Copy link
Contributor Author

@JJ JJ commented on a045e53 Aug 15, 2018 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JJ
Copy link
Contributor Author

@JJ JJ commented on a045e53 Aug 15, 2018 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@coke
Copy link
Collaborator

@coke coke commented on a045e53 Aug 15, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I commented on the ticket.

Please sign in to comment.