| OLD | NEW |
| 1 #library('encoding_parser'); | 1 #library('encoding_parser'); |
| 2 | 2 |
| 3 #import('constants.dart'); | 3 #import('constants.dart'); |
| 4 #import('inputstream.dart'); | 4 #import('inputstream.dart'); |
| 5 #import('utils.dart'); | 5 #import('utils.dart'); |
| 6 | 6 |
| 7 // TODO(jmesserly): I converted StopIteration to NoMoreElementsException. Seems | 7 // TODO(jmesserly): I converted StopIteration to NoMoreElementsException. Seems |
| 8 // strange to throw this from outside of an iterator though. | 8 // strange to throw this from outside of an iterator though. |
| 9 /** | 9 /** |
| 10 * String-like object with an associated position and various extra methods | 10 * String-like object with an associated position and various extra methods |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 } | 374 } |
| 375 } | 375 } |
| 376 } | 376 } |
| 377 | 377 |
| 378 | 378 |
| 379 bool isSpaceOrAngleBracket(String char) { | 379 bool isSpaceOrAngleBracket(String char) { |
| 380 return char == ">" || char == "<" || isWhitespace(char); | 380 return char == ">" || char == "<" || isWhitespace(char); |
| 381 } | 381 } |
| 382 | 382 |
| 383 typedef bool CharPreciate(String char); | 383 typedef bool CharPreciate(String char); |
| OLD | NEW |