Skip to content

Commit 732f227

Browse files
committed
move hair::cx::pattern to const_eval
1 parent bb5afb4 commit 732f227

File tree

9 files changed

+158
-178
lines changed

9 files changed

+158
-178
lines changed

src/Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/librustc_const_eval/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ serialize = { path = "../libserialize" }
1414
rustc = { path = "../librustc" }
1515
rustc_back = { path = "../librustc_back" }
1616
rustc_const_math = { path = "../librustc_const_math" }
17+
rustc_data_structures = { path = "../librustc_data_structures" }
1718
rustc_errors = { path = "../librustc_errors" }
1819
syntax = { path = "../libsyntax" }
1920
graphviz = { path = "../libgraphviz" }

src/librustc_const_eval/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#[macro_use] extern crate rustc;
3737
extern crate rustc_back;
3838
extern crate rustc_const_math;
39+
extern crate rustc_data_structures;
3940
extern crate rustc_errors;
4041
extern crate graphviz;
4142
extern crate syntax_pos;
@@ -47,6 +48,7 @@ pub mod diagnostics;
4748

4849
mod eval;
4950
pub mod check_match;
51+
pub mod pattern;
5052

5153
pub use eval::*;
5254

0 commit comments

Comments
 (0)