10
10
11
11
use ast;
12
12
use parse:: { ParseSess , PResult , filemap_to_tts} ;
13
- use parse:: new_parser_from_source_str;
13
+ use parse:: { lexer , new_parser_from_source_str} ;
14
14
use parse:: parser:: Parser ;
15
15
use parse:: token;
16
16
use ptr:: P ;
@@ -97,8 +97,8 @@ pub fn matches_codepattern(a : &str, b : &str) -> bool {
97
97
let ( a, b) = match ( a_iter. peek ( ) , b_iter. peek ( ) ) {
98
98
( None , None ) => return true ,
99
99
( None , _) => return false ,
100
- ( Some ( a) , None ) => {
101
- if a . is_whitespace ( ) {
100
+ ( Some ( & a) , None ) => {
101
+ if is_pattern_whitespace ( a ) {
102
102
break // trailing whitespace check is out of loop for borrowck
103
103
} else {
104
104
return false
@@ -107,11 +107,11 @@ pub fn matches_codepattern(a : &str, b : &str) -> bool {
107
107
( Some ( & a) , Some ( & b) ) => ( a, b)
108
108
} ;
109
109
110
- if a . is_whitespace ( ) && b . is_whitespace ( ) {
110
+ if is_pattern_whitespace ( a ) && is_pattern_whitespace ( b ) {
111
111
// skip whitespace for a and b
112
112
scan_for_non_ws_or_end ( & mut a_iter) ;
113
113
scan_for_non_ws_or_end ( & mut b_iter) ;
114
- } else if a . is_whitespace ( ) {
114
+ } else if is_pattern_whitespace ( a ) {
115
115
// skip whitespace for a
116
116
scan_for_non_ws_or_end ( & mut a_iter) ;
117
117
} else if a == b {
@@ -123,23 +123,18 @@ pub fn matches_codepattern(a : &str, b : &str) -> bool {
123
123
}
124
124
125
125
// check if a has *only* trailing whitespace
126
- a_iter. all ( |c| c . is_whitespace ( ) )
126
+ a_iter. all ( is_pattern_whitespace )
127
127
}
128
128
129
129
/// Advances the given peekable `Iterator` until it reaches a non-whitespace character
130
130
fn scan_for_non_ws_or_end < I : Iterator < Item = char > > ( iter : & mut Peekable < I > ) {
131
- loop {
132
- match iter. peek ( ) {
133
- Some ( c) if c. is_whitespace ( ) => { } // fall through; borrowck
134
- _ => return
135
- }
136
-
131
+ while lexer:: is_pattern_whitespace ( iter. peek ( ) . cloned ( ) ) {
137
132
iter. next ( ) ;
138
133
}
139
134
}
140
135
141
- pub fn is_whitespace ( c : char ) -> bool {
142
- c . is_whitespace ( )
136
+ pub fn is_pattern_whitespace ( c : char ) -> bool {
137
+ lexer :: is_pattern_whitespace ( Some ( c ) )
143
138
}
144
139
145
140
#[ cfg( test) ]
@@ -162,14 +157,18 @@ mod tests {
162
157
}
163
158
164
159
#[ test]
165
- fn more_whitespace ( ) {
160
+ fn pattern_whitespace ( ) {
166
161
assert_eq ! ( matches_codepattern( "" , "\x0C " ) , false ) ;
167
- assert_eq ! ( matches_codepattern( "a b" , "a\u{2002} b" ) , true ) ;
168
162
assert_eq ! ( matches_codepattern( "a b " , "a \u{0085} \n \t \r b" ) , true ) ;
169
163
assert_eq ! ( matches_codepattern( "a b" , "a \u{0085} \n \t \r b " ) , false ) ;
170
- assert_eq ! ( matches_codepattern( "a b" , "a\u{2002} b" ) , true ) ;
171
- assert_eq ! ( matches_codepattern( "ab" , "a\u{2003} b" ) , false ) ;
172
- assert_eq ! ( matches_codepattern( "a \u{3000} b" , "ab" ) , true ) ;
173
- assert_eq ! ( matches_codepattern( "\u{205F} a b" , "ab" ) , true ) ;
164
+ }
165
+
166
+ #[ test]
167
+ fn non_pattern_whitespace ( ) {
168
+ // These have the property 'White_Space' but not 'Pattern_White_Space'
169
+ assert_eq ! ( matches_codepattern( "a b" , "a\u{2002} b" ) , false ) ;
170
+ assert_eq ! ( matches_codepattern( "a b" , "a\u{2002} b" ) , false ) ;
171
+ assert_eq ! ( matches_codepattern( "\u{205F} a b" , "ab" ) , false ) ;
172
+ assert_eq ! ( matches_codepattern( "a \u{3000} b" , "ab" ) , false ) ;
174
173
}
175
174
}
0 commit comments