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

Unified Diff: compiler/java/com/google/dart/compiler/parser/DartScannerParserContext.java

Issue 10661022: Issue 3752. Support for @override annotations (as structured doc comments) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: compiler/java/com/google/dart/compiler/parser/DartScannerParserContext.java
diff --git a/compiler/java/com/google/dart/compiler/parser/DartScannerParserContext.java b/compiler/java/com/google/dart/compiler/parser/DartScannerParserContext.java
index 3f2db64d33bd69d314ced4a7debcf72c4a375348..f949b1b70cf59f3e68f99ff8b89c7142f09a1fcd 100644
--- a/compiler/java/com/google/dart/compiler/parser/DartScannerParserContext.java
+++ b/compiler/java/com/google/dart/compiler/parser/DartScannerParserContext.java
@@ -23,7 +23,7 @@ import java.util.Stack;
/**
* A ParserContext backed by a DartScanner.
*/
-public class DartScannerParserContext implements ParserContext {
+class DartScannerParserContext implements ParserContext {
private DartScanner scanner;
private Deque<DartScanner.State> stateStack = new ArrayDeque<DartScanner.State>();
private Deque<DartScanner.Position> positionStack = new ArrayDeque<DartScanner.Position>();

Powered by Google App Engine
This is Rietveld 408576698