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

Unified Diff: dart/tests/isolate/browser/ports_compilation_browser_test.dart

Issue 57393002: Version 0.8.10.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | « dart/tests/html/js_interop_4_test.dart ('k') | dart/third_party/pkg/js/.gitignore » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/isolate/browser/ports_compilation_browser_test.dart
===================================================================
--- dart/tests/isolate/browser/ports_compilation_browser_test.dart (revision 29787)
+++ dart/tests/isolate/browser/ports_compilation_browser_test.dart (working copy)
@@ -1,42 +0,0 @@
-// Copyright (c) 2013, 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.
-
-// Regression test for dart2js that used to crash when compiling
-// [foo]. See http://code.google.com/p/dart/issues/detail?id=7448.
-
-library ports_compilation;
-import 'dart:html';
-import 'dart:isolate';
-import 'package:unittest/unittest.dart';
-import 'package:unittest/html_config.dart';
-
-void foo() {
- // Create a "SendPortSync" object and access one of its members.
- SendPortSync s_port;
- s_port.callSync;
-
- // Create a "ReceivePortSync" object (with the constructor) and
- // access one of its members.
- var r_port = new ReceivePortSync();
- r_port.receive;
-
- // Call getComputedStyle() from the HTML library.
- query("").getComputedStyle("");
-}
-
-int inscrutable(int x) => x == 0 ? 0 : x | inscrutable(x & (x - 1));
-
-void main() {
- // Generate the call, but don't execute it.
- if (inscrutable(1) != 1) foo();
- useHtmlConfiguration();
- bar();
- // Also generate it here in case the compiler's worklist goes from
- // last seen to first seen.
- if (inscrutable(1) != 1) foo();
-}
-
-bar() {
- test('compile', () { });
-}
« no previous file with comments | « dart/tests/html/js_interop_4_test.dart ('k') | dart/third_party/pkg/js/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698