rust/src/libsyntax/ext
bors 09abbbdafc auto merge of #16866 : P1start/rust/tuple-indexing, r=brson
This allows code to access the fields of tuples and tuple structs behind the feature gate `tuple_indexing`:

```rust
#![feature(tuple_indexing)]

let x = (1i, 2i);
assert_eq!(x.1, 2);

struct Point(int, int);
let origin = Point(0, 0);
assert_eq!(origin.0, 0);
assert_eq!(origin.1, 0);
```

Implements [RFC 53](https://github.com/rust-lang/rfcs/blob/master/active/0053-tuple-accessors.md). Closes #16950.
2014-09-11 00:05:41 +00:00
..
deriving auto merge of #16788 : Manishearth/rust/raw-ptr-syntax-ty, r=huonw 2014-08-31 12:50:55 +00:00
tt Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
asm.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
base.rs Allow ExprLit expression macros to be used in patterns. 2014-08-31 01:45:11 +03:00
build.rs Implement tuple and tuple struct indexing 2014-09-10 10:25:12 +12:00
bytes.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
cfg.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
concat.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
concat_idents.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
env.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
expand.rs Add support for labeled while loops. 2014-08-29 23:43:55 -04:00
fmt.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
format.rs Optimize for the most common cases of format! 2014-09-09 20:34:41 +01:00
log_syntax.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
mtwt.rs Fix all the test fallout 2014-07-09 00:49:54 -07:00
quote.rs quote: Explicitly borrow the ExtCtxt 2014-09-08 11:30:55 -07:00
source_util.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
trace_macros.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00