diff --git a/vlib/v/ast/ast.v b/vlib/v/ast/ast.v index 0f2b314110..38de987113 100644 --- a/vlib/v/ast/ast.v +++ b/vlib/v/ast/ast.v @@ -213,7 +213,6 @@ pub: imports []Import stmts []Stmt scope &Scope - const_decls []ConstDecl } pub struct IdentFunc { diff --git a/vlib/v/checker/checker.v b/vlib/v/checker/checker.v index ceb90e25eb..54d8059728 100644 --- a/vlib/v/checker/checker.v +++ b/vlib/v/checker/checker.v @@ -48,7 +48,7 @@ pub fn (c mut Checker) check2(ast_file ast.File) []string { } pub fn (c mut Checker) check_files(ast_files []ast.File) { - // TODO: temp fix, impl proper solition + // TODO: temp fix, impl proper solution for file in ast_files { c.file = file for stmt in file.stmts {