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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/NodeList.java

Issue 192303002: Support for @DartName and @DartOptional annotations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/NodeList.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/NodeList.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/NodeList.java
index 42bf62cc51d0e17545f1f847b203e7f00ee8e4f4..bb9ccf7252aade1c4351cf8d315e9957a089d764 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/NodeList.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/NodeList.java
@@ -14,6 +14,7 @@
package com.google.dart.engine.ast;
import com.google.dart.engine.scanner.Token;
+import com.google.dart.engine.utilities.translation.DartOmit;
import java.util.AbstractList;
import java.util.Collection;
@@ -23,6 +24,7 @@ import java.util.Collection;
*
* @coverage dart.engine.ast
*/
+@DartOmit
public class NodeList<E extends AstNode> extends AbstractList<E> {
/**
* Create an empty list with the given owner. This is a convenience method that allows the

Powered by Google App Engine
This is Rietveld 408576698