| Index: compiler/java/com/google/dart/compiler/parser/DartParser.java
|
| ===================================================================
|
| --- compiler/java/com/google/dart/compiler/parser/DartParser.java (revision 11395)
|
| +++ compiler/java/com/google/dart/compiler/parser/DartParser.java (working copy)
|
| @@ -699,6 +699,7 @@
|
| expect(Token.LPAREN);
|
| beginLiteral();
|
| expect(Token.STRING);
|
| + @SuppressWarnings("unused")
|
| DartStringLiteral resourceUri = done(DartStringLiteral.get(ctx.getTokenString()));
|
| expectCloseParen();
|
| expect(Token.SEMICOLON);
|
| @@ -3056,6 +3057,8 @@
|
| * error that needs to be handled in an enclosing context.
|
| */
|
| private static class StringInterpolationParseError extends RuntimeException {
|
| + private static final long serialVersionUID = 1L;
|
| +
|
| public StringInterpolationParseError() {
|
| super();
|
| }
|
|
|