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); |
} |