CIRCULAR_DEPENDENCY error number changed to 200 to make room for expanding the set of grammar errors

This commit is contained in:
Sam Harwell 2012-10-25 21:34:24 -05:00
parent bfc395d23b
commit 73c6ce5c7e
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public enum ErrorType {
// Dependency sorting errors
//
/** t1.g4 -> t2.g4 -> t3.g4 ->t1.g4 */
CIRCULAR_DEPENDENCY(130, "your grammars contain a circular dependency and cannot be sorted into a valid build order", ErrorSeverity.ERROR),
CIRCULAR_DEPENDENCY(200, "your grammars contain a circular dependency and cannot be sorted into a valid build order", ErrorSeverity.ERROR),
// Simple informational messages
//