mirror of
https://github.com/vlang/v.git
synced 2025-09-12 00:46:55 -04:00
checker: remove vweb deprecation for now
This commit is contained in:
parent
e5f70278ea
commit
a93d94aadd
@ -2767,8 +2767,8 @@ fn (mut c Checker) hash_stmt(mut node ast.HashStmt) {
|
||||
fn (mut c Checker) import_stmt(node ast.Import) {
|
||||
if node.mod == 'x.vweb' {
|
||||
println('`x.vweb` is now `veb`. The module is no longer experimental. Simply `import veb` instead of `import x.vweb`.')
|
||||
} else if node.mod == 'vweb' {
|
||||
println('`vweb` has been deprecated. Please use the more stable and fast `veb`has been deprecated. Please use the more stable and fast `veb`` instead of `import x.vweb`.')
|
||||
//} else if node.mod == 'vweb' {
|
||||
// println('`vweb` has been deprecated. Please use the more stable and fast `veb` instead')
|
||||
}
|
||||
c.check_valid_snake_case(node.alias, 'module alias', node.pos)
|
||||
for sym in node.syms {
|
||||
|
Loading…
x
Reference in New Issue
Block a user