| OLD | NEW |
| 1 package com.google.dart.compiler.parser; | 1 package com.google.dart.compiler.parser; |
| 2 | 2 |
| 3 import com.google.dart.compiler.ErrorCode; | 3 import com.google.dart.compiler.ErrorCode; |
| 4 import com.google.dart.compiler.ErrorSeverity; | 4 import com.google.dart.compiler.ErrorSeverity; |
| 5 import com.google.dart.compiler.SubSystem; | 5 import com.google.dart.compiler.SubSystem; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * {@link ErrorCode}s for parser. | 8 * {@link ErrorCode}s for parser. |
| 9 * <p> | 9 * <p> |
| 10 * The convention in this file (with some exceptions) is that the enumeration na
me matches at least | 10 * The convention in this file (with some exceptions) is that the enumeration na
me matches at least |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 @Override | 104 @Override |
| 105 public ErrorSeverity getErrorSeverity() { | 105 public ErrorSeverity getErrorSeverity() { |
| 106 return severity; | 106 return severity; |
| 107 } | 107 } |
| 108 | 108 |
| 109 @Override | 109 @Override |
| 110 public SubSystem getSubSystem() { | 110 public SubSystem getSubSystem() { |
| 111 return SubSystem.PARSER; | 111 return SubSystem.PARSER; |
| 112 } | 112 } |
| 113 |
| 114 @Override |
| 115 public boolean needsRecompilation() { |
| 116 return true; |
| 117 } |
| 113 } | 118 } |
| OLD | NEW |