nboyd%atg.com 698fc5d9c2 Regression test for Matrix example
git-svn-id: svn://10.0.0.236/trunk@251164 18797224-902f-48f8-a5cc-f745e15eee43
2008-05-04 15:24:55 +00:00

19 lines
562 B
Plaintext

Test of Matrix example.
js> defineClass("Matrix")
js> var m = new Matrix(2); // A constructor call, see "Matrix(int dimension)"
js> m // Object.toString will call "Matrix.getClassName()"
[object Matrix]
js> m[0][0] = 3;
3
js> uneval(m[0]); // an array was created automatically!
[3]
js> uneval(m[1]); // array is created even if we don't set a value
[]
js> m.dim; // we can access the "dim" property
2
js> m.dim = 3;
3
js> m.dim; // but not modify the "dim" property
2