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

Unified Diff: pkg/js_ast/lib/src/nodes.dart

Issue 2957593002: Spelling fixes e to i. (Closed)
Patch Set: Created 3 years, 6 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 | « pkg/js_ast/lib/src/builder.dart ('k') | pkg/js_ast/lib/src/template.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/js_ast/lib/src/nodes.dart
diff --git a/pkg/js_ast/lib/src/nodes.dart b/pkg/js_ast/lib/src/nodes.dart
index 3ab8e6bb992fe79ddefea31537ce623d7448ac9f..1b893c96cefdeac791ee60dad36795169c10541c 100644
--- a/pkg/js_ast/lib/src/nodes.dart
+++ b/pkg/js_ast/lib/src/nodes.dart
@@ -984,7 +984,7 @@ abstract class DeferredToken extends Expression {
DeferredToken _clone() => this;
}
-/// Interace for a deferred integer value. An implementation has to provide
+/// Interface for a deferred integer value. An implementation has to provide
/// a value via the [value] getter the latest when the ast is printed.
abstract class DeferredNumber extends DeferredToken implements Literal {
accept(NodeVisitor visitor) => visitor.visitDeferredNumber(this);
@@ -994,7 +994,7 @@ abstract class DeferredNumber extends DeferredToken implements Literal {
int get precedenceLevel => value.isNegative ? UNARY : PRIMARY;
}
-/// Interace for a deferred string value. An implementation has to provide
+/// Interface for a deferred string value. An implementation has to provide
/// a value via the [value] getter the latest when the ast is printed.
abstract class DeferredString extends DeferredToken implements Literal {
accept(NodeVisitor visitor) => visitor.visitDeferredString(this);
@@ -1004,7 +1004,7 @@ abstract class DeferredString extends DeferredToken implements Literal {
int get precedenceLevel => PRIMARY;
}
-/// Interace for a deferred [Expression] value. An implementation has to provide
+/// Interface for a deferred [Expression] value. An implementation has to provide
/// a value via the [value] getter the latest when the ast is printed.
/// Also, [precedenceLevel] has to return the same value that
/// [value.precedenceLevel] returns once [value] is bound to an [Expression].
« no previous file with comments | « pkg/js_ast/lib/src/builder.dart ('k') | pkg/js_ast/lib/src/template.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698