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

Unified Diff: pkg/dartino_compiler/lib/src/verbs/debug_verb.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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
Index: pkg/dartino_compiler/lib/src/verbs/debug_verb.dart
diff --git a/pkg/fletchc/lib/src/verbs/debug_verb.dart b/pkg/dartino_compiler/lib/src/verbs/debug_verb.dart
similarity index 98%
rename from pkg/fletchc/lib/src/verbs/debug_verb.dart
rename to pkg/dartino_compiler/lib/src/verbs/debug_verb.dart
index 74ac5020ad0dd04dc4857c35d93fec9f82130e11..6eacc99e9eca05333a865fed7d154f9f2cc54b0b 100644
--- a/pkg/fletchc/lib/src/verbs/debug_verb.dart
+++ b/pkg/dartino_compiler/lib/src/verbs/debug_verb.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE.md file.
-library fletchc.verbs.debug_verb;
+library dartino_compiler.verbs.debug_verb;
import 'dart:core' hide
StackTrace;
@@ -33,7 +33,7 @@ import '../worker/developer.dart' show
import '../hub/client_commands.dart' show
ClientCommandCode;
-import 'package:fletchc/debug_state.dart' show
+import 'package:dartino_compiler/debug_state.dart' show
Breakpoint;
import '../../debug_state.dart' show
@@ -250,7 +250,7 @@ Future<int> interactiveDebuggerTask(
if (session == null) {
throwFatalError(DiagnosticKind.attachToVmBeforeRun);
}
- List<FletchDelta> compilationResult = state.compilationResults;
+ List<DartinoDelta> compilationResult = state.compilationResults;
if (compilationResult.isEmpty) {
throwFatalError(DiagnosticKind.compileBeforeRun);
}
@@ -258,7 +258,7 @@ Future<int> interactiveDebuggerTask(
// Make sure current state's session is not reused if invoked again.
state.session = null;
- for (FletchDelta delta in compilationResult) {
+ for (DartinoDelta delta in compilationResult) {
await session.applyDelta(delta);
}
@@ -349,7 +349,7 @@ Session attachToSession(SessionState state, CommandSender commandSender) {
Future<int> runToMainDebuggerTask(
CommandSender commandSender,
SessionState state) async {
- List<FletchDelta> compilationResults = state.compilationResults;
+ List<DartinoDelta> compilationResults = state.compilationResults;
Session session = state.session;
if (session == null) {
throwFatalError(DiagnosticKind.attachToVmBeforeRun);
@@ -365,7 +365,7 @@ Future<int> runToMainDebuggerTask(
}
state.attachCommandSender(commandSender);
- for (FletchDelta delta in compilationResults) {
+ for (DartinoDelta delta in compilationResults) {
await session.applyDelta(delta);
}
« no previous file with comments | « pkg/dartino_compiler/lib/src/verbs/create_verb.dart ('k') | pkg/dartino_compiler/lib/src/verbs/documentation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698