switch deprecation notice

pull/1755/head
Alexander Medvednikov 2019-08-27 01:25:37 +03:00
parent ab0a78a498
commit a43b831965
2 changed files with 21 additions and 15 deletions

View File

@ -727,15 +727,16 @@ fn new_v(args[]string) *V {
}
}
else {
switch target_os {
case 'linux': _os = .linux
case 'windows': _os = .windows
case 'mac': _os = .mac
case 'freebsd': _os = .freebsd
case 'openbsd': _os = .openbsd
case 'netbsd': _os = .netbsd
case 'dragonfly': _os = .dragonfly
case 'msvc': _os = .msvc
_os = match target_os {
'linux' => { OS.linux }
'windows' => { OS.windows }
'mac' => { OS.mac }
'freebsd' => { OS.freebsd }
'openbsd' => { OS.openbsd }
'netbsd' => { OS.netbsd }
'dragonfly' => { OS.dragonfly }
'msvc' => { OS.msvc }
else => { OS.linux }
}
}
builtins := [

View File

@ -779,6 +779,10 @@ if p.scanner.line_comment != '' {
}
}
fn (p mut Parser) warn(s string) {
println('warning: $p.file_name:$p.scanner.line_nr ' + s)
}
fn (p mut Parser) error(s string) {
// Dump all vars and types for debugging
if p.pref.is_debug {
@ -3292,6 +3296,7 @@ fn (p mut Parser) for_st() {
fn (p mut Parser) switch_statement() {
if p.tok == .key_switch {
//p.warn('`switch` was replaced `match`, it will be removed soon')
p.check(.key_switch)
} else {
p.check(.key_match)