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 * An abstract string representation. | 6 * An abstract string representation. |
7 */ | 7 */ |
8 class ByteString implements SourceString { | 8 class ByteString implements SourceString { |
9 final List<int> bytes; | 9 final List<int> bytes; |
10 final int offset; | 10 final int offset; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 68 |
69 Iterator<int> iterator() => new AsciiStringIterator(bytes); | 69 Iterator<int> iterator() => new AsciiStringIterator(bytes); |
70 | 70 |
71 SourceString copyWithoutQuotes(int initial, int terminal) { | 71 SourceString copyWithoutQuotes(int initial, int terminal) { |
72 return new AsciiString(bytes, offset + initial, | 72 return new AsciiString(bytes, offset + initial, |
73 length - initial - terminal); | 73 length - initial - terminal); |
74 } | 74 } |
75 | 75 |
76 | 76 |
77 static AsciiString fromString(String string) { | 77 static AsciiString fromString(String string) { |
78 List<int> bytes = string.charCodes(); | 78 List<int> bytes = string.charCodes; |
79 return AsciiString.of(bytes, 0, bytes.length); | 79 return AsciiString.of(bytes, 0, bytes.length); |
80 } | 80 } |
81 } | 81 } |
82 | 82 |
83 | 83 |
84 class AsciiStringIterator implements Iterator<int> { | 84 class AsciiStringIterator implements Iterator<int> { |
85 final List<int> bytes; | 85 final List<int> bytes; |
86 int offset; | 86 int offset; |
87 final int end; | 87 final int end; |
88 AsciiStringIterator(List<int> bytes) | 88 AsciiStringIterator(List<int> bytes) |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 * A ByteString-valued token. | 135 * A ByteString-valued token. |
136 */ | 136 */ |
137 class ByteStringToken extends Token { | 137 class ByteStringToken extends Token { |
138 final ByteString value; | 138 final ByteString value; |
139 | 139 |
140 ByteStringToken(PrecedenceInfo info, ByteString this.value, int charOffset) | 140 ByteStringToken(PrecedenceInfo info, ByteString this.value, int charOffset) |
141 : super(info, charOffset); | 141 : super(info, charOffset); |
142 | 142 |
143 String toString() => value.toString(); | 143 String toString() => value.toString(); |
144 } | 144 } |
OLD | NEW |