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

Unified Diff: test/frame_test.dart

Issue 936643002: Even better stack chains with VM async/await. (Closed) Base URL: git@github.com:dart-lang/stack_trace@master
Patch Set: Created 5 years, 10 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 | « pubspec.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/frame_test.dart
diff --git a/test/frame_test.dart b/test/frame_test.dart
index 638d1d7f6e75472fddb7c45e80eb43842820400d..c2cb80e949a68afa68f0e1ed5641e57a5c7901fe 100644
--- a/test/frame_test.dart
+++ b/test/frame_test.dart
@@ -56,9 +56,9 @@ void main() {
expect(frame.member, equals('Foo.<async>'));
});
- test('converts "<<anonymous closure>_async_body>" to "<async>"', () {
+ test('converts "<function_name_async_body>" to "<async>"', () {
var frame = new Frame.parseVM(
- '#0 Foo.<<anonymous closure>_async_body> (foo:0:0)');
+ '#0 Foo.<function_name_async_body> (foo:0:0)');
expect(frame.member, equals('Foo.<async>'));
});
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698