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

Unified Diff: pkg/dartino_compiler/lib/src/verbs/README.md

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: pkg/dartino_compiler/lib/src/verbs/README.md
diff --git a/pkg/fletchc/lib/src/verbs/README.md b/pkg/dartino_compiler/lib/src/verbs/README.md
similarity index 73%
rename from pkg/fletchc/lib/src/verbs/README.md
rename to pkg/dartino_compiler/lib/src/verbs/README.md
index ed2b8232333d228a853757fec34785c7cf30fd49..2383b1f1a1b78d31b54bd25400a6e8065fb730c5 100644
--- a/pkg/fletchc/lib/src/verbs/README.md
+++ b/pkg/dartino_compiler/lib/src/verbs/README.md
@@ -4,12 +4,12 @@ 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.
-->
-# Design for Fletch Command Line Interface commands
+# Design for Dartino Command Line Interface commands
-The overall structure of commands in Fletch should follow:
+The overall structure of commands in Dartino should follow:
```
-fletch verb [zero or more verbs or object-nouns]
+dartino verb [zero or more verbs or object-nouns]
```
The outermost verb is the group of actions to be performed
@@ -17,7 +17,7 @@ The outermost verb is the group of actions to be performed
(for example, 'debug step') or are the target of the outer verbs
(for example 'help debug').
-Object-nouns are the target of the command (for example, 'fletch show changes')
+Object-nouns are the target of the command (for example, 'dartino show changes')
The overall aim here is to provide the ability to 'vocalise' the instructions,
in other words to say them to yourself as you type them.
@@ -25,19 +25,19 @@ in other words to say them to yourself as you type them.
## Some examples
```
-fletch debug step
+dartino debug step
```
should perform the next step of execution.
```
-fletch help
+dartino help
```
should provide 'top level' help, whereas:
```
-fletch help debug
+dartino help debug
```
should provide help about debug.
@@ -48,11 +48,11 @@ Help should be supported everywhere as a top level verb and a sub-verb,
in other words:
```
-fletch help debug
+dartino help debug
```
and
```
-fletch debug help
+dartino debug help
```
Should display the same text.
« no previous file with comments | « pkg/dartino_compiler/lib/src/shared_command_infrastructure.dart ('k') | pkg/dartino_compiler/lib/src/verbs/actions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698