Skip to content

Commit c8ccbc4

Browse files
committed
---
yaml --- r: 155066 b: refs/heads/try2 c: d6fb338 h: refs/heads/master v: v3
1 parent 0b873f8 commit c8ccbc4

File tree

7 files changed

+368
-270
lines changed

7 files changed

+368
-270
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 9259b022f8ec05072993fd5e3e9f2eba3afc0c95
8+
refs/heads/try2: d6fb338d01864e3801cab9f76d608f204d11fc27
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/mk/crates.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ DEPS_graphviz := std
7070
DEPS_green := std native:context_switch
7171
DEPS_rustuv := std native:uv native:uv_support
7272
DEPS_native := std
73-
DEPS_syntax := std term serialize log fmt_macros debug
73+
DEPS_syntax := std term serialize log fmt_macros debug arena
7474
DEPS_rustc := syntax flate arena serialize getopts rbml \
7575
time log graphviz debug rustc_llvm rustc_back
7676
DEPS_rustc_llvm := native:rustllvm libc std

branches/try2/src/libsyntax/ast.rs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1308,16 +1308,11 @@ pub enum UnboxedClosureKind {
13081308
#[deriving(Clone, PartialEq, Eq, Encodable, Decodable, Hash, Show)]
13091309
pub enum InlinedItem {
13101310
IIItem(P<Item>),
1311-
IITraitItem(DefId /* impl id */, InlinedTraitItem),
1311+
IITraitItem(DefId /* impl id */, TraitItem),
1312+
IIImplItem(DefId /* impl id */, ImplItem),
13121313
IIForeign(P<ForeignItem>),
13131314
}
13141315

1315-
#[deriving(Clone, PartialEq, Eq, Encodable, Decodable, Hash, Show)]
1316-
pub enum InlinedTraitItem {
1317-
ProvidedInlinedTraitItem(P<Method>),
1318-
RequiredInlinedTraitItem(P<Method>),
1319-
}
1320-
13211316
#[cfg(test)]
13221317
mod test {
13231318
use serialize::json;

0 commit comments

Comments
 (0)