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

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

Issue 2581143003: implement LabeledStatement and Break in kernel (Closed)
Patch Set: fix some tests Created 4 years 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
Index: pkg/compiler/lib/src/js_backend/mirrors_analysis.dart
diff --git a/pkg/compiler/lib/src/js_backend/mirrors_analysis.dart b/pkg/compiler/lib/src/js_backend/mirrors_analysis.dart
index 5207421c61be4b65eb5327cf29c904f425171863..e7be92db400da61b14d49ba284bf1b0359ee463f 100644
--- a/pkg/compiler/lib/src/js_backend/mirrors_analysis.dart
+++ b/pkg/compiler/lib/src/js_backend/mirrors_analysis.dart
@@ -82,7 +82,7 @@ class MirrorsHandler {
return includedEnclosing || _backend.requiredByMirrorSystem(element);
}
- /// Enqeue the constructor [ctor] if it is required for reflection.
+ /// Enqueue the constructor [ctor] if it is required for reflection.
///
/// [enclosingWasIncluded] provides a hint whether the enclosing element was
/// needed for reflection.
@@ -99,7 +99,7 @@ class MirrorsHandler {
}
}
- /// Enqeue the member [element] if it is required for reflection.
+ /// Enqueue the member [element] if it is required for reflection.
///
/// [enclosingWasIncluded] provides a hint whether the enclosing element was
/// needed for reflection.
@@ -131,7 +131,7 @@ class MirrorsHandler {
}
}
- /// Enqeue the member [element] if it is required for reflection.
+ /// Enqueue the member [element] if it is required for reflection.
///
/// [enclosingWasIncluded] provides a hint whether the enclosing element was
/// needed for reflection.
@@ -163,7 +163,7 @@ class MirrorsHandler {
}
}
- /// Enqeue special classes that might not be visible by normal means or that
+ /// Enqueue special classes that might not be visible by normal means or that
/// would not normally be enqueued:
///
/// [Closure] is treated specially as it is the superclass of all closures.
@@ -182,7 +182,7 @@ class MirrorsHandler {
}
}
- /// Enqeue all local members of the library [lib] if they are required for
+ /// Enqueue all local members of the library [lib] if they are required for
/// reflection.
void _enqueueReflectiveElementsInLibrary(
LibraryElement lib, Iterable<ClassEntity> recents) {

Powered by Google App Engine
This is Rietveld 408576698