File tree 6 files changed +0
-151
lines changed 6 files changed +0
-151
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ import 'src/commands/doc.dart';
26
26
import 'src/commands/fix.dart' ;
27
27
import 'src/commands/info.dart' ;
28
28
import 'src/commands/language_server.dart' ;
29
- import 'src/commands/migrate.dart' ;
30
29
import 'src/commands/run.dart' ;
31
30
import 'src/commands/test.dart' ;
32
31
import 'src/core.dart' ;
@@ -131,7 +130,6 @@ class DartdevRunner extends CommandRunner<int> {
131
130
addCommand (FormatCommand (verbose: verbose));
132
131
addCommand (InfoCommand (verbose: verbose));
133
132
addCommand (LanguageServerCommand (verbose: verbose));
134
- addCommand (MigrateCommand (verbose: verbose));
135
133
addCommand (
136
134
pubCommand (
137
135
analytics: PubAnalytics (
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ dependencies:
20
20
dds : any
21
21
front_end : any
22
22
meta : any
23
- nnbd_migration : any
24
23
package_config : any
25
24
path : any
26
25
pub : any
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ void expectUsage(String msg) {
25
25
expect (msg, contains ('create ' ));
26
26
expect (msg, contains ('compile ' ));
27
27
expect (msg, contains ('format ' ));
28
- expect (msg, contains ('migrate ' ));
29
28
}
30
29
31
30
void command () {
@@ -134,7 +133,6 @@ void help() {
134
133
expect (result.exitCode, 0 );
135
134
expect (result.stdout,
136
135
contains ('Usage: dart [vm-options] <command|dart-file> [arguments]' ));
137
- expect (result.stdout, contains ('migrate ' ));
138
136
});
139
137
140
138
test ('help -v' , () async {
@@ -144,7 +142,6 @@ void help() {
144
142
expect (result.exitCode, 0 );
145
143
expect (result.stdout,
146
144
contains ('Usage: dart [vm-options] <command|dart-file> [arguments]' ));
147
- expect (result.stdout, contains ('migrate ' ));
148
145
});
149
146
}
150
147
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import 'commands/format_test.dart' as format;
14
14
import 'commands/help_test.dart' as help;
15
15
import 'commands/info_test.dart' as info;
16
16
import 'commands/language_server_test.dart' as language_server;
17
- import 'commands/migrate_test.dart' as migrate;
18
17
import 'commands/pub_test.dart' as pub;
19
18
import 'commands/run_test.dart' as run;
20
19
import 'commands/test_test.dart' as test;
@@ -45,7 +44,6 @@ void main() {
45
44
info.main ();
46
45
invalid_smoke.main ();
47
46
language_server.main ();
48
- migrate.main ();
49
47
no_such_file.main ();
50
48
pub.main ();
51
49
run.main ();
You can’t perform that action at this time.
0 commit comments