| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 class A extends Object { |
| 6 } |
| 7 |
| 8 main() { |
| 9 Expect.equals("Instance of 'Object'", new Object().toString()); |
| 10 Expect.equals("Instance of 'Object'", "" + new Object()); |
| 11 Expect.equals("Instance of 'A'", new A().toString()); |
| 12 Expect.equals("Instance of 'A'", "" + new A()); |
| 13 Expect.equals("Instance of 'List'", [].toString()); |
| 14 Expect.equals("Instance of 'List'", "" + []); |
| 15 Expect.equals("1", "" + 1); |
| 16 Expect.equals("1", (1).toString()); |
| 17 } |
| OLD | NEW |