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

Unified Diff: pkg/compiler/lib/src/compiler.dart

Issue 1131593006: Report malformed URIs in library dependencies (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/compiler/lib/src/library_loader.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/compiler.dart
diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
index 4671212ffad60e10fdac870bc96917479810655b..c56ea56a98c48fcd2261cb72aaf222b616d20d0e 100644
--- a/pkg/compiler/lib/src/compiler.dart
+++ b/pkg/compiler/lib/src/compiler.dart
@@ -418,7 +418,7 @@ abstract class Backend {
/// have special treatment, such as being allowed to extends blacklisted
/// classes or member being eagerly resolved.
bool isBackendLibrary(LibraryElement library) {
- // TODO(johnnwinther): Remove this when patching is only done by the
+ // TODO(johnniwinther): Remove this when patching is only done by the
// JavaScript backend.
Uri canonicalUri = library.canonicalUri;
if (canonicalUri == js_backend.JavaScriptBackend.DART_JS_HELPER ||
@@ -654,7 +654,7 @@ abstract class Compiler implements DiagnosticListener {
final CacheStrategy cacheStrategy;
/**
- * Map from token to the first preceeding comment token.
+ * Map from token to the first preceding comment token.
*/
final TokenMap commentMap = new TokenMap();
@@ -1053,7 +1053,7 @@ abstract class Compiler implements DiagnosticListener {
progress = new Stopwatch()..start();
}
- // TODO(johnniwinther): Separate the dependency tracking from the enqueueing
+ // TODO(johnniwinther): Separate the dependency tracking from the enqueuing
// for global dependencies.
globalDependencies =
new CodegenRegistry(this, new TreeElementMapping(null));
« no previous file with comments | « no previous file | pkg/compiler/lib/src/library_loader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698