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

Side by Side Diff: packages/barback/example/lazy_transformer/README.md

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
(Empty)
1 This example shows how to write a lazy transformer.
2
3 This lazy tranformer implements a ROT13 converter. ROT13 (ROTate 13)
4 is a classic substitution cipher which replaces each letter in the source
5 file with the corresponding letter 13 places later in the alphabet.
6 The source file should have a ".txt" extension and the converted file
7 is created with a ".shhhh" extension.
8
9 Generally, only transformers that take a long time to run should be made lazy.
10 This transformer is not particularly slow, but imagine that it might be used
11 to convert the entire library of congress–laziness would then be a virtue.
12
13 For more information, see Writing a Lazy Transformer at:
14 https://www.dartlang.org/tools/pub/transformers/lazy-transformer.html
OLDNEW
« no previous file with comments | « packages/barback/example/aggregate_transformer/pubspec.yaml ('k') | packages/barback/example/lazy_transformer/lib/message.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698