##
# BlahClass.is_blah?
will not link.
I think we can blame fortran! (blame canada!). Please review.
Index: html_generator.rb
===================================================================
--- html_generator.rb (revision 12725)
+++ html_generator.rb (working copy)
@@ -213,12 +213,12 @@
# class names, variable names, or instance variables
@markup.add_special(/(
- \w+(::\w+)*[.\#]\w+(\([\.\w+\*\/\+\-\=\<\>]+\))? # A::B.meth(**) (for operator
in Fortran95)
- | \#\w+(\([.\w\*\/\+\-\=\<\>]+\))? # meth(**) (for operator in Fortran95)
- | \b([A-Z]\w*(::\w+)*[.\#]\w+) # A::B.meth
+ \b([A-Z]\w*(::\w+)*[.\#]\w+[!?=]?) # A::B.meth
| \b([A-Z]\w+(::\w+)*) # A::B..
| \#\w+[!?=]? # #meth_name
| \b\w+([_\/\.]+\w+)*[!?=]? # meth_name
+ | \w+(::\w+)*[.\#]\w+(\([\.\w+\*\/\+\-\=\<\>]+\))? # A::B.meth(**) (for operator
in Fortran95)
+ | \#\w+(\([.\w\*\/\+\-\=\<\>]+\))? # meth(**) (for operator in Fortran95)
)/x,
:CROSSREF)
|