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

Side by Side Diff: pkg/dartino_compiler/lib/src/verbs/x_upgrade_verb.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 10 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) 2015, the Dartino project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dartino 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 library fletchc.verbs.x_upgrade_verb; 5 library dartino_compiler.verbs.x_upgrade_verb;
6 6
7 import 'infrastructure.dart'; 7 import 'infrastructure.dart';
8 import '../worker/developer.dart' show upgradeAgent; 8 import '../worker/developer.dart' show upgradeAgent;
9 import 'documentation.dart' show upgradeDocumentation; 9 import 'documentation.dart' show upgradeDocumentation;
10 10
11 const Action upgradeAction = const Action( 11 const Action upgradeAction = const Action(
12 upgradeFunction, 12 upgradeFunction,
13 upgradeDocumentation, 13 upgradeDocumentation,
14 requiresSession: true, 14 requiresSession: true,
15 supportsWithUri: true, 15 supportsWithUri: true,
(...skipping 10 matching lines...) Expand all
26 26
27 UpgradeTask(this.base, this.package); 27 UpgradeTask(this.base, this.package);
28 28
29 Future call( 29 Future call(
30 CommandSender commandSender, 30 CommandSender commandSender,
31 StreamIterator<ClientCommand> commandIterator) async { 31 StreamIterator<ClientCommand> commandIterator) async {
32 return await upgradeAgent(commandSender, commandIterator, 32 return await upgradeAgent(commandSender, commandIterator,
33 SessionState.current, base, package); 33 SessionState.current, base, package);
34 } 34 }
35 } 35 }
OLDNEW
« no previous file with comments | « pkg/dartino_compiler/lib/src/verbs/x_servicec_verb.dart ('k') | pkg/dartino_compiler/lib/src/worker/developer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698