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

Side by Side Diff: runtime/observatory/tests/service/developer_extension_test.dart

Issue 1751523003: Dump functions on circular dependency parser error (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | runtime/vm/parser.cc » ('j') | 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 // VMOptions=--error_on_bad_type --error_on_bad_override 4 // VMOptions=--error_on_bad_type --error_on_bad_override
5 5
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:convert'; 7 import 'dart:convert';
8 import 'dart:developer'; 8 import 'dart:developer';
9 import 'package:observatory/service_io.dart'; 9 import 'package:observatory/service_io.dart';
10 import 'package:observatory/cpu_profile.dart'; 10 import 'package:observatory/cpu_profile.dart';
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 } on ServerRpcException catch (e, st) { 145 } on ServerRpcException catch (e, st) {
146 expect(e.code, equals(ServiceExtensionResponse.extensionError)); 146 expect(e.code, equals(ServiceExtensionResponse.extensionError));
147 expect(e.message, stringContainsInOrder([ 147 expect(e.message, stringContainsInOrder([
148 'Error in extension `ext..languageError`:', 148 'Error in extension `ext..languageError`:',
149 'developer_extension_test.dart', 149 'developer_extension_test.dart',
150 'semicolon expected'])); 150 'semicolon expected']));
151 } 151 }
152 }, 152 },
153 ]; 153 ];
154 154
155 main(args) async => runIsolateTests(args, tests, testeeConcurrent:test, 155 main(args) async => runIsolateTests(args, tests, testeeConcurrent:test);
156 trace_compiler: true);
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698