| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * Scanner that reads from a String and creates tokens that points to | 6 * Scanner that reads from a String and creates tokens that points to |
| 7 * substrings. | 7 * substrings. |
| 8 */ | 8 */ |
| 9 class StringScanner extends ArrayBasedScanner<SourceString> { | 9 class StringScanner extends ArrayBasedScanner<SourceString> { |
| 10 final String string; | 10 final String string; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 class SubstringWrapper implements SourceString { | 36 class SubstringWrapper implements SourceString { |
| 37 final String internalString; | 37 final String internalString; |
| 38 final int begin; | 38 final int begin; |
| 39 final int end; | 39 final int end; |
| 40 | 40 |
| 41 const SubstringWrapper(String this.internalString, | 41 const SubstringWrapper(String this.internalString, |
| 42 int this.begin, int this.end); | 42 int this.begin, int this.end); |
| 43 | 43 |
| 44 int hashCode() => slowToString().hashCode(); | 44 int hashCode() => slowToString().hashCode(); |
| 45 int compareTo(SourceString other) => sourceStringCompare(this, other); |
| 45 | 46 |
| 46 bool operator ==(other) { | 47 bool operator ==(other) { |
| 47 return other is SourceString && slowToString() == other.slowToString(); | 48 return other is SourceString && slowToString() == other.slowToString(); |
| 48 } | 49 } |
| 49 | 50 |
| 50 void printOn(StringBuffer sb) { | 51 void printOn(StringBuffer sb) { |
| 51 sb.add(internalString.substring(begin, end)); | 52 sb.add(internalString.substring(begin, end)); |
| 52 } | 53 } |
| 53 | 54 |
| 54 String slowToString() => internalString.substring(begin, end); | 55 String slowToString() => internalString.substring(begin, end); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 65 assert(0 <= terminal); | 66 assert(0 <= terminal); |
| 66 assert(initial + terminal <= internalString.length); | 67 assert(initial + terminal <= internalString.length); |
| 67 return new SubstringWrapper(internalString, | 68 return new SubstringWrapper(internalString, |
| 68 begin + initial, end - terminal); | 69 begin + initial, end - terminal); |
| 69 } | 70 } |
| 70 | 71 |
| 71 bool isEmpty() => begin == end; | 72 bool isEmpty() => begin == end; |
| 72 | 73 |
| 73 bool isPrivate() => !isEmpty() && internalString.charCodeAt(begin) === $_; | 74 bool isPrivate() => !isEmpty() && internalString.charCodeAt(begin) === $_; |
| 74 } | 75 } |
| OLD | NEW |