| Index: dart/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Scanner.java
|
| ===================================================================
|
| --- dart/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Scanner.java (revision 29785)
|
| +++ dart/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Scanner.java (working copy)
|
| @@ -170,7 +170,7 @@
|
| }
|
| appendEofToken();
|
| instrumentation.metric("tokensCount", tokenCounter);
|
| - return firstToken();
|
| + return getFirstToken();
|
| } finally {
|
| instrumentation.log(2); //Log if over 1ms
|
| }
|
| @@ -370,7 +370,7 @@
|
| *
|
| * @return the first token in the token stream that was scanned
|
| */
|
| - protected Token firstToken() {
|
| + protected Token getFirstToken() {
|
| return tokens.getNext();
|
| }
|
|
|
|
|