You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Linus Geson (JIRA)" <ji...@apache.org> on 2016/01/15 11:12:40 UTC

[jira] [Commented] (GROOVY-7497) GroovyDoc reports only last method of a script

    [ https://issues.apache.org/jira/browse/GROOVY-7497?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15101569#comment-15101569 ] 

Linus Geson commented on GROOVY-7497:
-------------------------------------

I've encountered this problem as well using:
Groovy Version: 2.4.5 JVM: 1.8.0_66 Vendor: Oracle Corporation OS: Windows 7
and
Groovy Version: 2.4.5 JVM: 1.7.0_79 Vendor: Oracle Corporation OS: Windows 7

Installed Groovy using the Windows installer. Used the same testscript.groovy example as reporter and ran 
groovydoc testscript.groovy

> GroovyDoc reports only last method of a script
> ----------------------------------------------
>
>                 Key: GROOVY-7497
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7497
>             Project: Groovy
>          Issue Type: Bug
>          Components: GroovyDoc
>    Affects Versions: 2.4.3
>         Environment: Groovy Version: 2.4.3 JVM: 1.8.0_40 Vendor: Oracle Corporation OS: Windows 7
>            Reporter: Armin Heinzer
>            Priority: Minor
>
> If a script contains several methods, only the last one is reported.
> In the following example, the sayGoodbye() is reported by GroovyDoc but the sayHello() method is missing:
> {code}
> C:\Users\ah\test>groovy -version
> Groovy Version: 2.4.3 JVM: 1.8.0_40 Vendor: Oracle Corporation OS: Windows 7
> C:\Users\ah\test>type testscript.groovy
> sayHello()
> sayGoodbye()
> void sayHello() {
>   println 'hello'
> }
> void sayGoodbye() {
>   println 'goodbye'
> }
> C:\Users\ah\test>groovy testscript.groovy
> hello
> goodbye
> C:\Users\ah\test>groovydoc testscript.groovy
> Jul 08, 2015 5:29:10 PM java.util.prefs.WindowsPreferences <init>
> WARNUNG: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.
> {code}
> Screenshot of GroovyDoc, see https://www.dropbox.com/s/1jhko1yz9tw5hc6/groovydoc-screenshot.png?dl=0



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)