Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: sdk/lib/_internal/compiler/implementation/scanner/byte_strings.dart

Issue 14022007: Move Iterable implementation to collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 abstract class ByteString extends Iterable<int> implements SourceString { 8 abstract class ByteString extends IterableBase<int> implements SourceString {
9 final List<int> bytes; 9 final List<int> bytes;
10 final int offset; 10 final int offset;
11 final int length; 11 final int length;
12 int _hashCode; 12 int _hashCode;
13 13
14 ByteString(List<int> this.bytes, int this.offset, int this.length); 14 ByteString(List<int> this.bytes, int this.offset, int this.length);
15 15
16 String get charset; 16 String get charset;
17 17
18 String slowToString() => new String.fromCharCodes( 18 String slowToString() => new String.fromCharCodes(
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 * A ByteString-valued token. 145 * A ByteString-valued token.
146 */ 146 */
147 class ByteStringToken extends Token { 147 class ByteStringToken extends Token {
148 final ByteString value; 148 final ByteString value;
149 149
150 ByteStringToken(PrecedenceInfo info, ByteString this.value, int charOffset) 150 ByteStringToken(PrecedenceInfo info, ByteString this.value, int charOffset)
151 : super(info, charOffset); 151 : super(info, charOffset);
152 152
153 String toString() => value.toString(); 153 String toString() => value.toString();
154 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698