Removed runtime CharSetWithMissingEndRange test.

This commit is contained in:
Ivan Kochurkin 2017-03-03 13:42:09 +03:00
parent a1c50de31f
commit b07528796e
1 changed files with 0 additions and 24 deletions

View File

@ -206,30 +206,6 @@ public class LexerExecDescriptors {
} }
public static class CharSetWithMissingEndRange extends BaseLexerTestDescriptor {
public String input = "00\n";
/**
I
[@0,0:1='00',<1>,1:0]
[@1,3:2='<EOF>',<-1>,2:0]
*/
@CommentHasStringValue
public String output;
public String errors = null;
public String startRule = "";
public String grammarName = "L";
/**
lexer grammar L;
I : [0-]+ {<writeln("\"I\"")>} ;
WS : [ \n\\u000D]+ -> skip ;
*/ // needs escape on u000D otherwise java converts even in comment
@CommentHasStringValue
public String grammar;
}
public static class CharSetWithMissingEscapeChar extends BaseLexerTestDescriptor { public static class CharSetWithMissingEscapeChar extends BaseLexerTestDescriptor {
public String input = "34 "; public String input = "34 ";
/** /**