[Nice-commit] Nice/testsuite/compiler/methods compilation.testsuite,NONE,1.1
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-03-20 15:59:22
|
Update of /cvsroot/nice/Nice/testsuite/compiler/methods In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv403/testsuite/compiler/methods Added Files: compilation.testsuite Log Message: Compile dispatch methods as member methods whenever possible, to make integration with Java tools and code easier. --- NEW FILE: compilation.testsuite --- /// PASS // Test that the method is compiled inside the class let m = A.class.getDeclaredMethod("foo", []); assert m.invoke(new A(), null).equals("ABC"); /// Toplevel class A { String foo() = "ABC"; } |