Ignore:
Timestamp:
05/14/14 10:07:49 (10 years ago)
Author:
hkaulbersch
Message:

Changed Validation:
Validation now works between different files
-unused rule
-referenced only ones
-passthrough

Location:
v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src-gen/de/ugoe/cs/swe/bnftools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src-gen/de/ugoe/cs/swe/bnftools/serializer/EbnfSyntacticSequencer.java

    r65 r66  
    7676         * Syntax: 
    7777         *     ( 
     78             '+' |  
     79             '[' |  
     80             ')' |  
    7881             '{' |  
    79              '+' |  
    80              '}' |  
     82             ']' |  
     83             '|' |  
    8184             '*' |  
    82              ')' |  
    83              '|' |  
    84              '[' |  
    8585             '(' |  
    86              ']' 
     86             '}' 
    8787         )* 
    8888         */ 
  • v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src-gen/de/ugoe/cs/swe/bnftools/validation/AbstractEbnfValidator.java

    r65 r66  
    99import org.eclipse.xtext.validation.ComposedChecks; 
    1010 
    11 @ComposedChecks(validators= {org.eclipse.xtext.validation.ImportUriValidator.class, org.eclipse.xtext.validation.NamesAreUniqueValidator.class}) 
     11@ComposedChecks(validators= {org.eclipse.xtext.validation.ImportUriValidator.class}) 
    1212public class AbstractEbnfValidator extends org.eclipse.xtext.validation.AbstractDeclarativeValidator { 
    1313 
Note: See TracChangeset for help on using the changeset viewer.