vlib: reduce false positive matches for /// , cleanup commented code

This commit is contained in:
Delyan Angelov 2025-03-08 17:47:13 +02:00
parent af6247135c
commit 615e74d341
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
10 changed files with 12 additions and 46 deletions

View File

@ -113,8 +113,8 @@ pub fn (r NormalReporter) report_stop() {
eprintln('') eprintln('')
} }
//// TODO: reconsider if these should be public: // progress will show the given message normally
// TODO: reconsider if these should be public:
pub fn (r NormalReporter) progress(index int, message string) { pub fn (r NormalReporter) progress(index int, message string) {
eprintln(message) eprintln(message)
} }

View File

@ -1,6 +1,6 @@
module datatypes module datatypes
/// Internal representation of the tree node // Internal representation of the tree node
@[heap] @[heap]
struct BSTreeNode[T] { struct BSTreeNode[T] {
mut: mut:

View File

@ -926,7 +926,7 @@ pub fn (mut dl Dlmalloc) malloc(size usize) voidptr {
} }
} }
/// malloc behaves as libc malloc, but operates within the given space // malloc_real behaves as libc malloc, but operates within the given space
@[unsafe] @[unsafe]
fn (mut dl Dlmalloc) malloc_real(size usize) voidptr { fn (mut dl Dlmalloc) malloc_real(size usize) voidptr {
mut nb := usize(0) mut nb := usize(0)

View File

@ -3,10 +3,9 @@ module dlmalloc
__global global = new(get_system_allocator()) __global global = new(get_system_allocator())
/// malloc allocates `size` bytes. // malloc allocates `size` bytes.
/// // It returns a null pointer if allocation fails.
/// Returns a null pointer if allocation fails. Returns a valid pointer // It returns a valid pointer otherwise.
/// otherwise.
@[unsafe] @[unsafe]
pub fn malloc(size usize) voidptr { pub fn malloc(size usize) voidptr {
unsafe { unsafe {

View File

@ -1,6 +1,6 @@
module io module io
/// Eof error means that we reach the end of the stream. // Eof error means that we reach the end of the stream.
pub struct Eof { pub struct Eof {
Error Error
} }

View File

@ -1,6 +1,6 @@
module os module os
/// Eof error means that we reach the end of the file. // Eof error means that we reach the end of the file.
pub struct Eof { pub struct Eof {
Error Error
} }

View File

@ -42,7 +42,7 @@ fn (mut c Checker) ident_autocomplete(node ast.Ident) {
if !c.pref.linfo.vars_printed[nt] { // avoid dups if !c.pref.linfo.vars_printed[nt] { // avoid dups
sb.writeln('===') sb.writeln('===')
sb.writeln('VAR ${nt}') //${node.name}:${sym.name}') sb.writeln('VAR ${nt}') //${node.name}:${sym.name}')
/// print_backtrace() // print_backtrace()
/* /*
if sym.kind == .alias { if sym.kind == .alias {
parent_sym := c.table.sym(sym.parent_type) parent_sym := c.table.sym(sym.parent_type)

View File

@ -754,7 +754,7 @@ fn (mut g Gen) fn_decl_params(params []ast.Param, scope &ast.Scope, is_variadic
g.write('void') g.write('void')
} }
} }
/// mut is_implicit_ctx := false // mut is_implicit_ctx := false
// Veb actions defined by user can have implicit context // Veb actions defined by user can have implicit context
/* /*
if g.cur_fn != unsafe { nil } && g.cur_fn.is_method && g.cur_mod.name != 'veb' { if g.cur_fn != unsafe { nil } && g.cur_fn.is_method && g.cur_mod.name != 'veb' {

View File

@ -317,7 +317,7 @@ pub fn (mut g Gen) generate_macho_object_header() {
g.write32(0) g.write32(0)
g.write32(0) g.write32(0)
g.write32(0) g.write32(0)
/// ??? // ???
g.write32(0x32) g.write32(0x32)
g.write32(0x18) g.write32(0x18)
g.write32(0x01) g.write32(0x01)

View File

@ -2,11 +2,6 @@
// Use of this source code is governed by an MIT license that can be found in the LICENSE file. // Use of this source code is governed by an MIT license that can be found in the LICENSE file.
module pref module pref
// import v.ast
// import v.pref
// import os
// fn (mut p Pref) parse_line_info(line string, all_ast_files []&ast.File) {
fn (mut p Preferences) parse_line_info(line string) { fn (mut p Preferences) parse_line_info(line string) {
// println("parse_line_info '${line}'") // println("parse_line_info '${line}'")
format_err := 'wrong format, use `-line-info "file.v:24:expr_to_look_up"' format_err := 'wrong format, use `-line-info "file.v:24:expr_to_look_up"'
@ -22,34 +17,6 @@ fn (mut p Preferences) parse_line_info(line string) {
eprintln(format_err) eprintln(format_err)
return return
} }
// println('files.len=${c.files.len}')
// Find which file contains the line
mut found := true // false
//// mut found_path := ''
// mut found_file_idx := -1
/*
for i, file in all_ast_files {
// base := os.base(file.path)
base := file.path // os.base(file.path)
// println(base)
if base == file_name {
if found {
eprintln('more than one "${file_name}" found: "${file.path}" and "${found_path}"')
return
}
found = true
found_path = file.path
found_file_idx = i
}
}
*/
if !found {
eprintln('file "${file_name}" not found among those parsed')
return
}
p.linfo = LineInfo{ p.linfo = LineInfo{
line_nr: line_nr line_nr: line_nr
path: file_name path: file_name