From 73c6ce5c7ec6ee8521a2dc049e1abd0d1a744c6e Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 25 Oct 2012 21:34:24 -0500 Subject: [PATCH] CIRCULAR_DEPENDENCY error number changed to 200 to make room for expanding the set of grammar errors --- tool/src/org/antlr/v4/tool/ErrorType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/src/org/antlr/v4/tool/ErrorType.java b/tool/src/org/antlr/v4/tool/ErrorType.java index 30635de4e..e3869cea8 100644 --- a/tool/src/org/antlr/v4/tool/ErrorType.java +++ b/tool/src/org/antlr/v4/tool/ErrorType.java @@ -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 //