Separating policy file into main policy and generated interfaces; fixing lexer, parse...
[iot2.git] / others / jflex / iotparser.jflex
index f16ef69374b1ed1788e80e1c39db09bcce3a0a0f..a9e70d1778b85014307e60a0afdfa3eb129f2f07 100644 (file)
@@ -52,7 +52,7 @@ import java_cup.runtime.ComplexSymbolFactory.Location;
 %eofval}
 
 
-Ident = [a-zA-Z$_] [a-zA-Z0-9$_]*
+Ident = [a-zA-Z$_] [a-zA-Z0-9$_<>]*
 
 new_line = \r|\n|\r\n;
 
@@ -102,7 +102,6 @@ white_space = {new_line} | [ \t\f]
   \"              { string.setLength(0); yybegin(STRING); }
 ";"               { return symbol("semicolon",SEMICOLON); }
 ","               { return symbol("comma",COMMA); }
-"."               { return symbol("dot",DOT); }
 "("               { return symbol("(",LPAR); }
 ")"               { return symbol(")",RPAR); }
 "{"               { return symbol("{",BEGIN); }