Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(784)

Unified Diff: runtime/observatory/test/mirror_references_test.dart

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/observatory/test/metrics_test.dart ('k') | runtime/observatory/test/string_escaping_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/test/mirror_references_test.dart
diff --git a/runtime/observatory/test/mirror_references_test.dart b/runtime/observatory/test/mirror_references_test.dart
deleted file mode 100644
index b3c782cbf1316397742e24d0324bb12daaed029a..0000000000000000000000000000000000000000
--- a/runtime/observatory/test/mirror_references_test.dart
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright (c) 2014, 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.
-
-library vm_references_test;
-
-import 'dart:async';
-import 'dart:mirrors';
-import 'package:observatory/service_io.dart';
-import 'package:unittest/unittest.dart';
-import 'test_helper.dart';
-
-class Foo { }
-
-Foo foo;
-var /*MirrorReference*/ ref;
-
-void script() {
- foo = new Foo();
- ClassMirror fooClassMirror = reflectClass(Foo);
- InstanceMirror fooClassMirrorMirror = reflect(fooClassMirror);
- LibraryMirror libmirrors = fooClassMirrorMirror.type.owner;
- ref = reflect(fooClassMirror).getField(MirrorSystem.getSymbol('_reflectee', libmirrors)).reflectee;
-}
-
-var tests = [
-
-(Isolate isolate) =>
- isolate.rootLib.load().then((Library lib) {
- Field fooField = lib.variables.singleWhere((v) => v.name == 'foo');
- Instance foo = fooField.value;
- Field refField = lib.variables.singleWhere((v) => v.name == 'ref');
- Instance ref = refField.value;
-
- expect(foo.isMirrorReference, isFalse);
- expect(ref.isMirrorReference, isTrue);
- expect(ref.referent, isNull);
- return ref.load().then((Instance loadedRef) {
- expect(loadedRef.referent, isNotNull);
- expect(loadedRef.referent.name, equals('Foo'));
- expect(loadedRef.referent, equals(foo.clazz));
- });
- }),
-
-];
-
-main(args) => runIsolateTests(args, tests, testeeBefore: script);
« no previous file with comments | « runtime/observatory/test/metrics_test.dart ('k') | runtime/observatory/test/string_escaping_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698