| 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>();
|
|
|