parser: force `...` rather than `..` in matches for inclusive ranges (#5852)

pull/5865/head
spaceface777 2020-07-17 10:30:21 +02:00 committed by GitHub
parent fa03f390b3
commit 3583302ad4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 25 additions and 10 deletions

View File

@ -2616,7 +2616,7 @@ fn (mut c Checker) match_exprs(mut node ast.MatchExpr, type_sym table.TypeSymbol
typ := c.table.type_to_str(c.expr(expr.low)) typ := c.table.type_to_str(c.expr(expr.low))
c.error('cannot use type `$typ` in match range', branch.pos) c.error('cannot use type `$typ` in match range', branch.pos)
} }
for i in low .. high { for i in low..high + 1 {
key = i.str() key = i.str()
val := if key in branch_exprs { branch_exprs[key] } else { 0 } val := if key in branch_exprs { branch_exprs[key] } else { 0 }
if val == 1 { if val == 1 {

View File

@ -35,7 +35,7 @@ vlib/v/checker/tests/match_duplicate_branch.v:43:3: error: match case `2` is han
45 | } 45 | }
vlib/v/checker/tests/match_duplicate_branch.v:51:3: error: match case `3` is handled more than once vlib/v/checker/tests/match_duplicate_branch.v:51:3: error: match case `3` is handled more than once
49 | match i { 49 | match i {
50 | 1..5 { println('1 to 4') } 50 | 1...5 { println('1 to 5') }
51 | 3 { println('3') } 51 | 3 { println('3') }
| ~~~ | ~~~
52 | else { println('else') } 52 | else { println('else') }

View File

@ -47,7 +47,7 @@ fn test_int(i int) {
fn test_range(i int) { fn test_range(i int) {
match i { match i {
1..5 { println('1 to 4') } 1...5 { println('1 to 5') }
3 { println('3') } 3 { println('3') }
else { println('else') } else { println('else') }
} }

View File

@ -2242,7 +2242,7 @@ fn (mut g Gen) match_expr(node ast.MatchExpr) {
g.expr(expr.low) g.expr(expr.low)
g.write(' && ') g.write(' && ')
g.expr(node.cond) g.expr(node.cond)
g.write(' < ') g.write(' <= ')
g.expr(expr.high) g.expr(expr.high)
g.write(')') g.write(')')
} else { } else {

View File

@ -188,6 +188,8 @@ fn (mut p Parser) match_expr() ast.MatchExpr {
expr := p.expr(0) expr := p.expr(0)
p.inside_match_case = false p.inside_match_case = false
if p.tok.kind == .dotdot { if p.tok.kind == .dotdot {
p.error_with_pos('match only supports inclusive (`...`) ranges, not exclusive (`..`)', p.tok.position())
} else if p.tok.kind == .ellipsis {
p.next() p.next()
expr2 := p.expr(0) expr2 := p.expr(0)
exprs << ast.RangeExpr{ exprs << ast.RangeExpr{

View File

@ -0,0 +1,7 @@
vlib/v/parser/tests/match_range_dotdot_err.v:3:4: error: match only supports inclusive (`...`) ranges, not exclusive (`..`)
1 | fn test_match() {
2 | match 5 {
3 | 0..10 { '0-9' }
| ~~
4 | else { 'other' }
5 | }

View File

@ -0,0 +1,6 @@
fn test_match() {
match 5 {
0..10 { '0-9' }
else { 'other' }
}
}

View File

@ -63,19 +63,19 @@ fn test_match_integers() {
} }
fn test_match_multiple() { fn test_match_multiple() {
assert match 5 { assert match 9 {
1, 2, 3 { '1-3' } 1, 2, 3 { '1-3' }
4, 5 { '4-5' } 4, 5 { '4-5' }
6..9, 9 { '6-9' } 6...9 { '6-9' }
else { 'other' } else { 'other' }
} == '4-5' } == '6-9'
} }
fn test_match_range() { fn test_match_range() {
assert match `f` { assert match `f` {
`0`..`9` { 'digit' } `0`...`9` { 'digit' }
`A`..`Z` { 'uppercase' } `A`...`Z` { 'uppercase' }
`a`..`z` { 'lowercase' } `a`...`z` { 'lowercase' }
else { 'other' } else { 'other' }
} == 'lowercase' } == 'lowercase'
} }