Skip to content

Commit f355425

Browse files
authored
Remove useless subkind infer
Co. #1971 > For the sigil part, I checked https://docs.perl6.org/js/search.js and lookup https://docs.perl6.org/language/variables.html#index-entry-%21%2525_%28sigil%29 > All sigil are X<>-ed manually. I'd like to remove 'sigil' from the very line, since its meaning is weird. If we want to make something searchable/indexed, use X<> as Pod6 spec.
1 parent 74b318f commit f355425

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

htmlify.p6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ sub find-definitions(:$pod, :$origin, :$min-level = -1, :$url) {
593593
:$summary,
594594
;
595595
}
596-
when 'variable'|'sigil'|'twigil'|'declarator'|'quote' {
596+
when 'variable'|'twigil'|'declarator'|'quote' {
597597
# TODO: More types of syntactic features
598598
%attr = :kind<syntax>,
599599
:categories($subkinds),

0 commit comments

Comments
 (0)