X-Git-Url: http://nitlanguage.org diff --git a/tests/bench_send2.nit b/tests/bench_send2.nit index c1e29c6..e296465 100644 --- a/tests/bench_send2.nit +++ b/tests/bench_send2.nit @@ -15,40 +15,40 @@ # limitations under the License. redef class Object - meth foo do end + fun foo do end end class A - redef meth foo do end + redef fun foo do end init do end end class B -special A - redef meth foo do end + super A + redef fun foo do end init do end end class C -special A + super A init do end end class D -special B -special C + super B + super C init do end end class E -special B -special C - redef meth foo do end + super B + super C + redef fun foo do end init do end end class F -special D -special E - redef meth foo do end + super D + super E + redef fun foo do end init do end end