Chromium Code Reviews| 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 'A']", new A().toString()); | |
|
Lasse Reichstein
2012/01/11 09:49:16
If List.toString should return "Instance of 'List'
| |
| 11 } | |
| OLD | NEW |