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

Side by Side Diff: tests/compiler/dart2js/sourcemaps/stacktrace_test.dart

Issue 2858463002: js_runtime: Split _asyncHelper into separate functions (Closed)
Patch Set: update test Created 3 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
« no previous file with comments | « tests/compiler/dart2js/async_await_js_transform_test.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 import 'dart:async'; 5 import 'dart:async';
6 import 'dart:convert'; 6 import 'dart:convert';
7 import 'dart:io'; 7 import 'dart:io';
8 8
9 import 'package:async_helper/async_helper.dart'; 9 import 'package:async_helper/async_helper.dart';
10 import 'package:compiler/compiler_new.dart'; 10 import 'package:compiler/compiler_new.dart';
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 ]; 542 ];
543 543
544 /// Lines allowed after the intended stack trace. Typically from the event 544 /// Lines allowed after the intended stack trace. Typically from the event
545 /// queue. 545 /// queue.
546 const List<LineException> afterExceptions = const [ 546 const List<LineException> afterExceptions = const [
547 const LineException('_wrapJsFunctionForAsync', 'async_patch.dart'), 547 const LineException('_wrapJsFunctionForAsync', 'async_patch.dart'),
548 const LineException( 548 const LineException(
549 '_wrapJsFunctionForAsync.<anonymous function>', 'async_patch.dart'), 549 '_wrapJsFunctionForAsync.<anonymous function>', 'async_patch.dart'),
550 const LineException( 550 const LineException(
551 '_awaitOnObject.<anonymous function>', 'async_patch.dart'), 551 '_awaitOnObject.<anonymous function>', 'async_patch.dart'),
552 const LineException('_asyncAwait.<anonymous function>', 'async_patch.dart'),
553 const LineException('_asyncStart.<anonymous function>', 'async_patch.dart'),
552 const LineException('_RootZone.runUnary', 'zone.dart'), 554 const LineException('_RootZone.runUnary', 'zone.dart'),
553 const LineException('_FutureListener.handleValue', 'future_impl.dart'), 555 const LineException('_FutureListener.handleValue', 'future_impl.dart'),
556 const LineException('_Future._completeWithValue', 'future_impl.dart'),
554 const LineException( 557 const LineException(
555 '_Future._propagateToListeners.handleValueCallback', 'future_impl.dart'), 558 '_Future._propagateToListeners.handleValueCallback', 'future_impl.dart'),
556 const LineException('_Future._propagateToListeners', 'future_impl.dart'), 559 const LineException('_Future._propagateToListeners', 'future_impl.dart'),
557 const LineException( 560 const LineException(
558 '_Future._addListener.<anonymous function>', 'future_impl.dart'), 561 '_Future._addListener.<anonymous function>', 'future_impl.dart'),
559 ]; 562 ];
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/async_await_js_transform_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698