diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-09-07 19:04:40 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-10 16:13:08 -0700 |
| commit | 93d3b8aa6b681a8add60e4a22a5c41e7f7ce7557 (patch) | |
| tree | f9fdbb8b2faf77423620d59d572976a32349f747 /src/libsyntax/ext | |
| parent | bea6fe0ec12439187617bfc27f23962d018f8463 (diff) | |
| download | rust-93d3b8aa6b681a8add60e4a22a5c41e7f7ce7557.tar.gz rust-93d3b8aa6b681a8add60e4a22a5c41e7f7ce7557.zip | |
Convert class methods to impl methods. Stop parsing class methods
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/pipes/proto.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libsyntax/ext/pipes/proto.rs b/src/libsyntax/ext/pipes/proto.rs index cb470aee7f3..1f674bb5395 100644 --- a/src/libsyntax/ext/pipes/proto.rs +++ b/src/libsyntax/ext/pipes/proto.rs @@ -134,6 +134,9 @@ struct protocol_ { states: DVec<state>, mut bounded: Option<bool>, +} + +impl protocol_ { /// Get a state. fn get_state(name: ~str) -> state { |
