Fix names of some tests in dart2js_extra.

BUG=
R=karlklose@google.com

Review URL: https://codereview.chromium.org//1076183002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45231 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
herhut@google.com 2015-04-17 09:54:24 +00:00
parent 12bd74a79a
commit 1706f2bbb3
4 changed files with 0 additions and 16 deletions

View file

@ -1,16 +0,0 @@
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import "package:expect/expect.dart";
import 'dart:isolate';
class Bar {}
main() {
final port = new ReceivePort();
port.receive((msg, reply) {
Expect.equals(new Bar().runtimeType.toString(), 'Bar');
});
port.sendPort.send(null);
}