動き始めた

しばらくgroovy-coreへのcommitが無く、jsrのみcommitの状態だった。

I've posted a few bugs to the groovy site, but haven't seen any action
on them.  Is something supposed to happen?  I'm only asking because I'm
worried I didn't enter them right.

こんなことが言われちゃったからなのかどうかわからないが
cvsへのコミット、jiraのcloseが始まった。
そろそろ groovy-1.0-beta8 がでるのかもね。

エラー時のスタックトレースがデフォルトでなくなった(-d 指定したときにのみでる)

>type hello.groovy
s = "
>groovy hello.groovy
Caught: E:\temp\hello.groovy: 1: unterminated string literal @ line 1, column 5.
>groovy -d hello.groovy
Caught: E:\temp\hello.groovy: 1: unterminated string literal @ line 1, column 5.




        at org.codehaus.groovy.control.ProcessingUnit.fail(ProcessingUnit.java:4
66)
        at org.codehaus.groovy.control.CompilationUnit.applyToSourceUnits(Compil
(略)

さらに以下のいやーんなバグが最新版では直ってます。

>groovysh
Lets get Groovy!
================
Version: 1.0-beta-7 JVM: 1.4.2_05-b04
Type 'exit' to terminate the shell
Type 'help' for command help

groovy> s = "\\"
discarding invalid text:
groovysh script: 1: unterminated string literal @ line 1, column 5.
   s = "\\"
       ^

>groovysh
Lets get Groovy!
================
Version: 1.0-beta-8-SNAPSHOT JVM: 1.4.2_05-b04
Type 'exit' to terminate the shell
Type 'help' for command help

groovy> s = "\\"
groovy> println s
groovy> go
\