Skip to content

Commit ff0e8f4

Browse files
committed
Revamped DropRange data structure
Not currently working. Need to flow drop information.
1 parent ba7d127 commit ff0e8f4

File tree

4 files changed

+273
-292
lines changed

4 files changed

+273
-292
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4383,7 +4383,6 @@ dependencies = [
43834383
name = "rustc_typeck"
43844384
version = "0.0.0"
43854385
dependencies = [
4386-
"itertools 0.9.0",
43874386
"rustc_arena",
43884387
"rustc_ast",
43894388
"rustc_attr",
@@ -4396,6 +4395,7 @@ dependencies = [
43964395
"rustc_lint",
43974396
"rustc_macros",
43984397
"rustc_middle",
4398+
"rustc_serialize",
43994399
"rustc_session",
44004400
"rustc_span",
44014401
"rustc_target",

compiler/rustc_typeck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ test = false
88
doctest = false
99

1010
[dependencies]
11-
itertools = "0.9"
1211
rustc_arena = { path = "../rustc_arena" }
1312
tracing = "0.1"
1413
rustc_macros = { path = "../rustc_macros" }
@@ -28,3 +27,4 @@ rustc_infer = { path = "../rustc_infer" }
2827
rustc_trait_selection = { path = "../rustc_trait_selection" }
2928
rustc_ty_utils = { path = "../rustc_ty_utils" }
3029
rustc_lint = { path = "../rustc_lint" }
30+
rustc_serialize = { path = "../rustc_serialize" }

0 commit comments

Comments
 (0)