You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by pk...@apache.org on 2014/02/12 11:24:21 UTC

svn commit: r1567584 - /uima/ruta/trunk/ruta-ep-ide/src/main/antlr3/org/apache/uima/ruta/ide/core/parser/RutaParser.g

Author: pkluegl
Date: Wed Feb 12 10:24:21 2014
New Revision: 1567584

URL: http://svn.apache.org/r1567584
Log:
UIMA-3611
- do not allow hyphen in feature match identifiers

Modified:
    uima/ruta/trunk/ruta-ep-ide/src/main/antlr3/org/apache/uima/ruta/ide/core/parser/RutaParser.g

Modified: uima/ruta/trunk/ruta-ep-ide/src/main/antlr3/org/apache/uima/ruta/ide/core/parser/RutaParser.g
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-ep-ide/src/main/antlr3/org/apache/uima/ruta/ide/core/parser/RutaParser.g?rev=1567584&r1=1567583&r2=1567584&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-ep-ide/src/main/antlr3/org/apache/uima/ruta/ide/core/parser/RutaParser.g (original)
+++ uima/ruta/trunk/ruta-ep-ide/src/main/antlr3/org/apache/uima/ruta/ide/core/parser/RutaParser.g Wed Feb 12 10:24:21 2014
@@ -953,7 +953,7 @@ featureTypeExpression returns [Expressio
 
 featureExpression returns [Expression expr = null]
 	:
-	f = dottedId2  {expr = ExpressionFactory.createFeatureExpression(f);}
+	f = dottedId  {expr = ExpressionFactory.createFeatureExpression(f);}
 	;
 
 simpleTypeExpression returns [Expression type = null]