Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |