diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-08-10 14:05:02 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-08-10 14:05:02 -0600 |
commit | 2b9590c5a53f273c13c6fb36f95fbf593bbffd8b (patch) | |
tree | ba393111d6c0d1c573e6b5a4c005e10c91bf3c07 /components/script/lib.rs | |
parent | 8b13a79743936f77bab11f72ef8b325946557326 (diff) | |
parent | 4e8922a53a7dcd40aba45e11a25dd614d8330e07 (diff) | |
download | servo-2b9590c5a53f273c13c6fb36f95fbf593bbffd8b.tar.gz servo-2b9590c5a53f273c13c6fb36f95fbf593bbffd8b.zip |
Auto merge of #6778 - nox:childnodes, r=jdm
Optimise Node.childNodes
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6778)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 81a1a62b189..59b37f78a25 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -22,6 +22,7 @@ #![feature(plugin)] #![feature(ref_slice)] #![feature(rc_unique)] +#![feature(slice_patterns)] #![feature(str_utf16)] #![feature(unicode)] #![feature(vec_push_all)] |