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

Side by Side Diff: pkg/analyzer/lib/src/error.dart

Issue 45573002: Rename analyzer_experimental to analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks before publishing. Created 7 years, 1 month 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
« no previous file with comments | « pkg/analyzer/lib/src/analyzer_impl.dart ('k') | pkg/analyzer/lib/src/error_formatter.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 library error; 4 library error;
5 5
6 import 'dart:collection'; 6 import 'dart:collection';
7 import 'dart:math' as math; 7 import 'dart:math' as math;
8 8
9 import 'generated/error.dart'; 9 import 'generated/error.dart';
10 import 'generated/java_core.dart'; 10 import 'generated/java_core.dart';
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 class _ContentReceiver implements Source_ContentReceiver { 95 class _ContentReceiver implements Source_ContentReceiver {
96 final _buffer = new StringBuffer(); 96 final _buffer = new StringBuffer();
97 97
98 String get result => _buffer.toString(); 98 String get result => _buffer.toString();
99 99
100 void accept(CharBuffer contents, _) => 100 void accept(CharBuffer contents, _) =>
101 _buffer.write(contents.subSequence(0, contents.length())); 101 _buffer.write(contents.subSequence(0, contents.length()));
102 102
103 void accept2(String contents, _) => _buffer.write(contents); 103 void accept2(String contents, _) => _buffer.write(contents);
104 } 104 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/analyzer_impl.dart ('k') | pkg/analyzer/lib/src/error_formatter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698