| OLD | NEW |
| 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 dartino_compiler.verbs.verbs; | 5 library dartino_compiler.verbs.verbs; |
| 6 | 6 |
| 7 import 'infrastructure.dart' show | 7 import 'infrastructure.dart' show |
| 8 AnalyzedSentence, | 8 AnalyzedSentence, |
| 9 Future, | 9 Future, |
| 10 TargetKind, | 10 TargetKind, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 import 'help_verb.dart' show | 43 import 'help_verb.dart' show |
| 44 helpAction; | 44 helpAction; |
| 45 | 45 |
| 46 import 'run_verb.dart' show | 46 import 'run_verb.dart' show |
| 47 runAction; | 47 runAction; |
| 48 | 48 |
| 49 import 'x_end_verb.dart' show | 49 import 'x_end_verb.dart' show |
| 50 endAction; | 50 endAction; |
| 51 | 51 |
| 52 import 'x_servicec_verb.dart' show | |
| 53 servicecAction; | |
| 54 | |
| 55 import 'x_upgrade_verb.dart' show | 52 import 'x_upgrade_verb.dart' show |
| 56 upgradeAction; | 53 upgradeAction; |
| 57 | 54 |
| 58 import 'x_download_tools_verb.dart' show | 55 import 'x_download_tools_verb.dart' show |
| 59 downloadToolsAction; | 56 downloadToolsAction; |
| 60 | 57 |
| 61 import 'x_should_prompt_analytics_verb.dart' show | 58 import 'x_should_prompt_analytics_verb.dart' show |
| 62 shouldPromptAnalyticsAction; | 59 shouldPromptAnalyticsAction; |
| 63 | 60 |
| 64 import 'quit_verb.dart' show | 61 import 'quit_verb.dart' show |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "build": buildAction, | 157 "build": buildAction, |
| 161 "compile": compileAction, | 158 "compile": compileAction, |
| 162 "create": createAction, | 159 "create": createAction, |
| 163 "debug": debugAction, | 160 "debug": debugAction, |
| 164 "disable": disableAction, | 161 "disable": disableAction, |
| 165 "enable": enableAction, | 162 "enable": enableAction, |
| 166 "export": exportAction, | 163 "export": exportAction, |
| 167 "flash": flashAction, | 164 "flash": flashAction, |
| 168 "x-download-tools": downloadToolsAction, | 165 "x-download-tools": downloadToolsAction, |
| 169 "x-end": endAction, | 166 "x-end": endAction, |
| 170 "x-servicec": servicecAction, | |
| 171 "x-should-prompt-analytics": shouldPromptAnalyticsAction, | 167 "x-should-prompt-analytics": shouldPromptAnalyticsAction, |
| 172 "x-upgrade": upgradeAction, | 168 "x-upgrade": upgradeAction, |
| 173 }; | 169 }; |
| OLD | NEW |