aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/str.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2015-11-18 15:44:30 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2015-11-18 15:44:30 +0530
commit7a87312121a69b590b364f9b5095f3145554e24b (patch)
treeb90d213147d74d97a79ba65a31394ddc78fec95f /components/script/dom/bindings/str.rs
parent247f586284ff3938430fd2be8de2ba2ac82eadc2 (diff)
parent0c61be7a577b99dc138eb6a2e46fb9276df0870d (diff)
downloadservo-7a87312121a69b590b364f9b5095f3145554e24b.tar.gz
servo-7a87312121a69b590b364f9b5095f3145554e24b.zip
Auto merge of #8569 - Ms2ger:fmt-script, r=metajack
Rustfmt some of script. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8569) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/bindings/str.rs')
-rw-r--r--components/script/dom/bindings/str.rs26
1 files changed, 20 insertions, 6 deletions
diff --git a/components/script/dom/bindings/str.rs b/components/script/dom/bindings/str.rs
index dd4295f2c0b..b9b1090e082 100644
--- a/components/script/dom/bindings/str.rs
+++ b/components/script/dom/bindings/str.rs
@@ -56,12 +56,26 @@ impl ByteString {
// http://tools.ietf.org/html/rfc2616#section-2.2
match x {
0...31 | 127 => false, // CTLs
- 40 | 41 | 60 | 62 | 64 |
- 44 | 59 | 58 | 92 | 34 |
- 47 | 91 | 93 | 63 | 61 |
- 123 | 125 | 32 => false, // separators
+ 40 |
+ 41 |
+ 60 |
+ 62 |
+ 64 |
+ 44 |
+ 59 |
+ 58 |
+ 92 |
+ 34 |
+ 47 |
+ 91 |
+ 93 |
+ 63 |
+ 61 |
+ 123 |
+ 125 |
+ 32 => false, // separators
x if x > 127 => false, // non-CHARs
- _ => true
+ _ => true,
}
})
}
@@ -75,7 +89,7 @@ impl ByteString {
Other,
CR,
LF,
- SPHT // SP or HT
+ SPHT, // SP or HT
}
let ByteString(ref vec) = *self;
let mut prev = PreviousCharacter::Other; // The previous character