Branch: Tag:

1997-09-29

1997-09-29 00:57:55 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

({})->identifier implemented

Rev: src/array.c:1.14
Rev: src/object.c:1.24
Rev: src/opcodes.c:1.9
Rev: src/operators.c:1.18
Rev: src/pike_types.c:1.26
Rev: src/testsuite.in:1.55

1: - test_true([["$Id: testsuite.in,v 1.54 1997/09/16 00:33:09 hubbe Exp $"]]) + test_true([["$Id: testsuite.in,v 1.55 1997/09/29 00:57:55 hubbe Exp $"]])   test_eq(1e1,10.0)   test_eq(1E1,10.0)   test_eq(1e+1,10.0)
9:      test_eq(class { static int foo=17; }()->foo,0)   test_eval_error(class { static int foo=17; }()->foo=18;) + test_equal( [[ ({ (["foo":"bar"]), (<"foo">), ([]) })->foo ]], [[ ({"bar",1,0}) ]]) + test_eval_error([[mixed a=({([]),0}); a[1]=a; return a->foo;]])      test_any([[   class p1 { int foo() { return 1; }};