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

Side by Side Diff: dart/tests/lib/mirrors/mirrors_test.dart

Issue 15861005: Implement ClassMirror.owner and LibraryMirror.uri. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix problem in deferred code Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/sdk/lib/_internal/compiler/implementation/ssa/builder.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // TODO(rmacnak): Move the existing mirror tests here (a place for 5 // TODO(rmacnak): Move the existing mirror tests here (a place for
6 // cross-implementation tests). 6 // cross-implementation tests).
7 7
8 library MirrorsTest; 8 library MirrorsTest;
9 import "dart:mirrors"; 9 import "dart:mirrors";
10 import "../../../pkg/unittest/lib/unittest.dart"; 10 import "../../../pkg/unittest/lib/unittest.dart";
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 } 200 }
201 201
202 mainWithArgument({bool isDart2js}) { 202 mainWithArgument({bool isDart2js}) {
203 var mirrors = currentMirrorSystem(); 203 var mirrors = currentMirrorSystem();
204 test("Test reflective method invocation", () { testInvoke(mirrors); }); 204 test("Test reflective method invocation", () { testInvoke(mirrors); });
205 test("Test instance field access", () { testInstanceFieldAccess(mirrors); }); 205 test("Test instance field access", () { testInstanceFieldAccess(mirrors); });
206 test('Test intercepted objects', () { testIntercepted(mirrors); }); 206 test('Test intercepted objects', () { testIntercepted(mirrors); });
207 test("Test field access", () { testFieldAccess(mirrors); }); 207 test("Test field access", () { testFieldAccess(mirrors); });
208 test("Test closure mirrors", () { testClosureMirrors(mirrors); }); 208 test("Test closure mirrors", () { testClosureMirrors(mirrors); });
209 test("Test invoke constructor", () { testInvokeConstructor(mirrors); }); 209 test("Test invoke constructor", () { testInvokeConstructor(mirrors); });
210 if (isDart2js) return;
211 test("Test reflect type", () { testReflectClass(mirrors); });
212 test("Test simple and qualifiedName", () { testNames(mirrors); });
213 test("Test current library uri", () { 210 test("Test current library uri", () {
214 testLibraryUri(new Class(), 211 testLibraryUri(new Class(),
215 (Uri uri) => uri.path.endsWith('/mirrors_test.dart')); 212 (Uri uri) => uri.path.endsWith('/mirrors_test.dart'));
216 }); 213 });
217 test("Test dart library uri", () { 214 test("Test dart library uri", () {
218 testLibraryUri("test", (Uri uri) => uri == Uri.parse('dart:core')); 215 testLibraryUri("test", (Uri uri) => uri == Uri.parse('dart:core'));
219 }); 216 });
217 if (isDart2js) return;
218 test("Test reflect type", () { testReflectClass(mirrors); });
219 test("Test simple and qualifiedName", () { testNames(mirrors); });
220 } 220 }
221 221
222 main() { 222 main() {
223 mainWithArgument(isDart2js: false); 223 mainWithArgument(isDart2js: false);
224 } 224 }
OLDNEW
« no previous file with comments | « dart/sdk/lib/_internal/compiler/implementation/ssa/builder.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698