Jessica Dawson created GROOVY-8297:
--------------------------------------

             Summary: GroovyDoc ignores overloaded methods in scripts
                 Key: GROOVY-8297
                 URL: https://issues.apache.org/jira/browse/GROOVY-8297
             Project: Groovy
          Issue Type: Bug
          Components: GroovyDoc
            Reporter: Jessica Dawson
            Priority: Minor


If multiple methods with the same name are defined in a script _outside of a 
class_, GroovyDoc only generates docs for the last one in the file.

For example, if my script is:
{code:java}
/**
 * This is a method
 */
def call() {
    ...
}

/**
 * This is a method with the same name
 */
def call(String abc) {
    ...
}
{code}

call(String abc) will show up in the groovydocs, but call() will not.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to