Introduce RightArrow (->) token in the scanner

This commit is contained in:
Alex Beregszaszi
2020-08-27 12:28:27 +01:00
parent fdc4142b2c
commit 4e5b403c37
9 changed files with 18 additions and 14 deletions
@@ -5,7 +5,7 @@ contract C {
function asmfun(a, b, c) -> x, y, z {
x := g(a)
function g(r) - > s {
function g(r) -> s {
s := mul(r, r)
}
y := g(b)