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

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

Issue 808713003: Remove barback from the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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 | Annotate | Revision Log
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 | « pkg/barback/example/aggregate_transformer/pubspec.yaml ('k') | pkg/barback/example/lazy_transformer/lib/message.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698