Merge branch 'fix-cameligo-ne' into 'dev'

Fix lexer

See merge request ligolang/ligo!115
This commit is contained in:
Sander 2019-10-01 06:30:20 +00:00
commit 4dd8b03e75

View File

@ -520,7 +520,7 @@ let esc = "\\n" | "\\\"" | "\\\\" | "\\b"
| "\\r" | "\\t" | "\\x" byte | "\\r" | "\\t" | "\\x" byte
let symbol = ';' | ',' | '(' | ')'| '[' | ']' | '{' | '}' let symbol = ';' | ',' | '(' | ')'| '[' | ']' | '{' | '}'
| '#' | '|' | "->" | ":=" | '=' | ':' | '#' | '|' | "->" | ":=" | '=' | ':'
| '<' | "<=" | '>' | ">=" | "=/=" | '<' | "<=" | '>' | ">=" | "=/=" | "<>"
| '+' | '-' | '*' | '/' | '.' | '_' | '^' | '+' | '-' | '*' | '/' | '.' | '_' | '^'
| "::" | "||" | "&&" | "::" | "||" | "&&"
let string = [^'"' '\\' '\n']* (* For strings of #include *) let string = [^'"' '\\' '\n']* (* For strings of #include *)