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

Side by Side Diff: dart/tests/compiler/dart2js_native/only_pass_on_d8_test.dart

Issue 23523003: Address a number of issues related to computation of currentScript and deferred loading. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add tests Created 7 years, 3 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 // No library declaration.
6
7 import 'dart:mirrors';
8
9 import 'package:expect/expect.dart'; 5 import 'package:expect/expect.dart';
10 6
11 class C {} 7 import 'dart:_isolate_helper';
12 8
13 main() { 9 main() {
14 Expect.equals(const Symbol(""), reflectClass(C).owner.simpleName); 10 Expect.isTrue(IsolateNatives.isD8);
11 Expect.isFalse(IsolateNatives.isJsshell);
15 } 12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698