File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
branches/dist-snap/src/libsyntax/parse Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9
9
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10
- refs/heads/dist-snap: e7fe903d882ba3206016442f2a743ba8369abf97
10
+ refs/heads/dist-snap: f7681f9236168cfad661b0ad73798a2d54a941f1
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -2262,6 +2262,30 @@ struct parser {
2262
2262
push(bounds, bound_const);
2263
2263
} else if self.eat_keyword(~"owned") {
2264
2264
push(bounds, bound_owned);
2265
+ } else if is_ident(self.token) {
2266
+ // XXX: temporary until kinds become traits
2267
+ let maybe_bound = match self.token {
2268
+ token::IDENT(sid, _) => {
2269
+ match *self.id_to_str(sid) {
2270
+ ~"Send" => Some(bound_send),
2271
+ ~"Copy" => Some(bound_copy),
2272
+ ~"Const" => Some(bound_const),
2273
+ ~"Owned" => Some(bound_owned),
2274
+ _ => None
2275
+ }
2276
+ }
2277
+ _ => fail
2278
+ };
2279
+
2280
+ match maybe_bound {
2281
+ Some(bound) => {
2282
+ self.bump();
2283
+ push(bounds, bound);
2284
+ }
2285
+ None => {
2286
+ push(bounds, bound_trait(self.parse_ty(false)));
2287
+ }
2288
+ }
2265
2289
} else {
2266
2290
push(bounds, bound_trait(self.parse_ty(false)));
2267
2291
}
You can’t perform that action at this time.
0 commit comments