Skip to content

Commit

Permalink
checker: remove vweb deprecation for now
Browse files Browse the repository at this point in the history
  • Loading branch information
medvednikov committed Jan 19, 2025
1 parent e5f7027 commit a93d94a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vlib/v/checker/checker.v
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a93d94a

Please sign in to comment.