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

Side by Side Diff: pkg/compiler/lib/src/io/source_file.dart

Issue 830703004: Emit to StreamCodeOutput instead of CodeBuffer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 library source_file; 5 library dart2js.io.source_file;
6 6
7 import 'dart:math'; 7 import 'dart:math';
8 import 'dart:convert' show UTF8; 8 import 'dart:convert' show UTF8;
9 9
10 /// Interface for providing line/column information. 10 import 'line_column_provider.dart';
11 abstract class LineColumnProvider {
12 /// Returns the line number (0-based) for [offset].
13 int getLine(int offset);
14
15 /// Returns the column number (0-based) for [offset] at the given [line].
16 int getColumn(int line, int offset);
17 }
18 11
19 /** 12 /**
20 * Represents a file of source code. The content can be either a [String] or 13 * Represents a file of source code. The content can be either a [String] or
21 * a UTF-8 encoded [List<int>] of bytes. 14 * a UTF-8 encoded [List<int>] of bytes.
22 */ 15 */
23 abstract class SourceFile implements LineColumnProvider { 16 abstract class SourceFile implements LineColumnProvider {
24 17
25 /** The name of the file. */ 18 /** The name of the file. */
26 String get filename; 19 String get filename;
27 20
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 215
223 int get length => text.length; 216 int get length => text.length;
224 set length(int v) { } 217 set length(int v) { }
225 218
226 String slowText() => text; 219 String slowText() => text;
227 220
228 List<int> slowUtf8Bytes() => UTF8.encode(text); 221 List<int> slowUtf8Bytes() => UTF8.encode(text);
229 222
230 String slowSubstring(int start, int end) => text.substring(start, end); 223 String slowSubstring(int start, int end) => text.substring(start, end);
231 } 224 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698