summaryrefslogtreecommitdiff
path: root/src/pre_lexer.mll
diff options
context:
space:
mode:
authorKathy Gray2014-02-28 11:47:41 +0000
committerKathy Gray2014-02-28 11:47:41 +0000
commit98231d112693ef6815e79a6aba3ba0a5b7f027a7 (patch)
tree4d825cc408f1a00fa9191b672ba8659763e1f8db /src/pre_lexer.mll
parentfef22f2f0f0f0e821b68f3f917e48c97a974a511 (diff)
Correct bug in parsing and handling a['a:'b] types
Diffstat (limited to 'src/pre_lexer.mll')
-rw-r--r--src/pre_lexer.mll4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pre_lexer.mll b/src/pre_lexer.mll
index 5f55cc72..b8869812 100644
--- a/src/pre_lexer.mll
+++ b/src/pre_lexer.mll
@@ -133,8 +133,8 @@ rule token = parse
| "2**" | "&" | "@" | "|" | "^" | ":" | "," | "." | "/" | "=" | "!" | ">" | "-" | "<" |
"+" | ";" | "*" | "~" | "_" | "{" | "}" | "(" | ")" | "[" | "]" | "&&" | "||" | "|]" | "||]" |
- "^^" | "::" | ":=" | ".." | "=/=" | "==" | "!=" | "!!" | ">=" | ">=+" | ">>" | ">>>" | ">+" |
- "#>>" | "#<<" | "->" | "<=" | "<=+" | "<>" | "<<" | "<<<" | "<+" | "**" | "~^" | ">=_s" |
+ "^^" | "::" | ":>" | ":=" | ".." | "=/=" | "==" | "!=" | "!!" | ">=" | ">=+" | ">>" | ">>>" | ">+" |
+ "#>>" | "#<<" | "->" | "<:" | "<=" | "<=+" | "<>" | "<<" | "<<<" | "<+" | "**" | "~^" | ">=_s" |
">=_si" | ">=_u" | ">=_ui" | ">>_u" | ">_s" | ">_si" | ">_u" | ">_ui" | "<=_s" | "<=_si" |
"<=_u" | "<=_ui" | "<_s" | "<_si" | "<_u" | "<_ui" | "**_s" | "**_si" | "*_u" | "*_ui"| "2^" { Other }