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

Side by Side Diff: tests/dartino_compiler/incremental/incremental_test_runner.dart

Issue 2029723004: Don't quit debugger when the program terminates, only after `quit`. Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 library dartino_compiler.test.incremental_test_runner; 5 library dartino_compiler.test.incremental_test_runner;
6 6
7 import 'dart:io' hide 7 import 'dart:io' hide
8 exitCode, 8 exitCode,
9 stderr, 9 stderr,
10 stdin, 10 stdin,
(...skipping 30 matching lines...) Expand all
41 IncrementalCompiler; 41 IncrementalCompiler;
42 42
43 import 'package:dartino_compiler/vm_commands.dart' show 43 import 'package:dartino_compiler/vm_commands.dart' show
44 VmCommand; 44 VmCommand;
45 45
46 import 'package:dartino_compiler/src/dartino_compiler_implementation.dart' show 46 import 'package:dartino_compiler/src/dartino_compiler_implementation.dart' show
47 OutputProvider; 47 OutputProvider;
48 48
49 import 'package:dartino_compiler/dartino_system.dart' show 49 import 'package:dartino_compiler/dartino_system.dart' show
50 DartinoDelta, 50 DartinoDelta,
51 DartinoFunction,
52 DartinoSystem; 51 DartinoSystem;
53 52
54 import 'package:dartino_compiler/src/dartino_compiler_options.dart' show 53 import 'package:dartino_compiler/src/dartino_compiler_options.dart' show
55 DartinoCompilerOptions, 54 DartinoCompilerOptions,
56 IncrementalMode; 55 IncrementalMode;
57 56
58 import 'program_result.dart' show 57 import 'program_result.dart' show
59 EncodedResult, 58 EncodedResult,
60 ProgramResult; 59 ProgramResult;
61 60
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 334
336 Future<List<int>> readUtf8BytesFromUri(Uri uri) { 335 Future<List<int>> readUtf8BytesFromUri(Uri uri) {
337 throw "not supported"; 336 throw "not supported";
338 } 337 }
339 338
340 static String readCachedFile(Uri uri) { 339 static String readCachedFile(Uri uri) {
341 return cachedFiles.putIfAbsent( 340 return cachedFiles.putIfAbsent(
342 uri, () => new File.fromUri(uri).readAsStringSync()); 341 uri, () => new File.fromUri(uri).readAsStringSync());
343 } 342 }
344 } 343 }
OLDNEW
« no previous file with comments | « tests/dartino_compiler/incremental/dartino_vm_tester.dart ('k') | tests/debugger/accessors_expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698