| 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.documentation; | 5 library dartino_compiler.verbs.documentation; |
| 6 | 6 |
| 7 const String synopsis = """ | 7 const String synopsis = """ |
| 8 Manages interactions with the dartino compiler and runtime. | 8 Manages interactions with the dartino compiler and runtime. |
| 9 Example: dartino run sample.dart | 9 Example: dartino run sample.dart |
| 10 | 10 |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 Run <file> on the Dartino VM. If no <file> is given, run the | 133 Run <file> on the Dartino VM. If no <file> is given, run the |
| 134 previous file. Defaults to running on the local PC; | 134 previous file. Defaults to running on the local PC; |
| 135 use 'in session remote' to run remotely. | 135 use 'in session remote' to run remotely. |
| 136 """; | 136 """; |
| 137 | 137 |
| 138 const String endDocumentation = """ | 138 const String endDocumentation = """ |
| 139 x-end session <name> | 139 x-end session <name> |
| 140 End the named session | 140 End the named session |
| 141 """; | 141 """; |
| 142 | 142 |
| 143 const String servicecDocumentation = """ | |
| 144 x-servicec <file> | |
| 145 Compile service IDL file named <file> to custom Dartino interface | |
| 146 """; | |
| 147 | |
| 148 const String exportDocumentation = """ | 143 const String exportDocumentation = """ |
| 149 export [<dartfile>] to <snapshot> | 144 export [<dartfile>] to <snapshot> |
| 150 Compile <dartfile> and create a snapshot in <snapshot>. If no | 145 Compile <dartfile> and create a snapshot in <snapshot>. If no |
| 151 <dartfile> is given, export the previously compiled file | 146 <dartfile> is given, export the previously compiled file |
| 152 """; | 147 """; |
| 153 | 148 |
| 154 const String quitDocumentation = """ | 149 const String quitDocumentation = """ |
| 155 quit Quits the Dartino background process, and terminates all | 150 quit Quits the Dartino background process, and terminates all |
| 156 Dartino sessions currently running. | 151 Dartino sessions currently running. |
| 157 """; | 152 """; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 disable analytics | 202 disable analytics |
| 208 Turn off collection of anonymous usage statistics | 203 Turn off collection of anonymous usage statistics |
| 209 and crash reports. | 204 and crash reports. |
| 210 """; | 205 """; |
| 211 | 206 |
| 212 const String shouldPromptAnalyticsDocumentation = """ | 207 const String shouldPromptAnalyticsDocumentation = """ |
| 213 x-should-prompt-analytics | 208 x-should-prompt-analytics |
| 214 Return `true` if the user should be asked to opt into analytics. | 209 Return `true` if the user should be asked to opt into analytics. |
| 215 This is used by IDEs to determine whether to prompt the user. | 210 This is used by IDEs to determine whether to prompt the user. |
| 216 """; | 211 """; |
| OLD | NEW |