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

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

Issue 917083003: Revert "dart2js: Refactoring, documentation, and a few bugfixes in Namer class." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/backend.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) 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 part of dart2js; 5 part of dart2js;
6 6
7 /** 7 /**
8 * If true, print a warning for each method that was resolved, but not 8 * If true, print a warning for each method that was resolved, but not
9 * compiled. 9 * compiled.
10 */ 10 */
(...skipping 2205 matching lines...) Expand 10 before | Expand all | Expand 10 after
2216 message = message(); 2216 message = message();
2217 } 2217 }
2218 throw new SpannableAssertionFailure(spannable, message); 2218 throw new SpannableAssertionFailure(spannable, message);
2219 } 2219 }
2220 return true; 2220 return true;
2221 } 2221 }
2222 2222
2223 /// Returns `true` when [s] is private if used as an identifier. 2223 /// Returns `true` when [s] is private if used as an identifier.
2224 bool isPrivateName(String s) => !s.isEmpty && s.codeUnitAt(0) == $_; 2224 bool isPrivateName(String s) => !s.isEmpty && s.codeUnitAt(0) == $_;
2225 2225
2226 /// Returns `true` when [s] is public if used as an identifier.
2227 bool isPublicName(String s) => !isPrivateName(s);
2228
2229 /// A sink that drains into /dev/null. 2226 /// A sink that drains into /dev/null.
2230 class NullSink implements EventSink<String> { 2227 class NullSink implements EventSink<String> {
2231 final String name; 2228 final String name;
2232 2229
2233 NullSink(this.name); 2230 NullSink(this.name);
2234 2231
2235 add(String value) {} 2232 add(String value) {}
2236 2233
2237 void addError(Object error, [StackTrace stackTrace]) {} 2234 void addError(Object error, [StackTrace stackTrace]) {}
2238 2235
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
2411 return futureClass.computeType(compiler).createInstantiation([elementType]); 2408 return futureClass.computeType(compiler).createInstantiation([elementType]);
2412 } 2409 }
2413 2410
2414 @override 2411 @override
2415 InterfaceType streamType([DartType elementType = const DynamicType()]) { 2412 InterfaceType streamType([DartType elementType = const DynamicType()]) {
2416 return streamClass.computeType(compiler).createInstantiation([elementType]); 2413 return streamClass.computeType(compiler).createInstantiation([elementType]);
2417 } 2414 }
2418 } 2415 }
2419 2416
2420 typedef void InternalErrorFunction(Spannable location, String message); 2417 typedef void InternalErrorFunction(Spannable location, String message);
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/backend.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698