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

Side by Side Diff: compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java

Issue 9148026: Recompile unit with potential conflict/dependency on some top-level symbol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix for compiling corelib, so NPE in TreeShaker Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698