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

Side by Side Diff: pkg/barback/lib/src/operator.dart

Issue 25376003: Add support for transformer clusters to barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Expose the Operator class. Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
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 file.
4
5 library barback.operator;
6
7 import 'transformer.dart';
8
9 /// An interface that denotes classes that can be used as Barback operators.
Bob Nystrom 2013/10/04 21:47:50 As per our discussion, this doesn't add much value
nweiz 2013/10/07 23:21:31 Done.
10 ///
11 /// By far the most common type of operator is the [Transformer]. If you aren't
12 /// sure what type of operator you want, that's the one.
13 ///
14 /// External libraries shouldn't implement or extend Operator directly.
15 abstract class Operator {
16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698