vdoc: sort function names
parent
70f085be18
commit
46ec400cb3
|
@ -47,7 +47,7 @@ pub fn doc(mod string, table &table.Table) string {
|
||||||
d.stmts << file_ast.stmts
|
d.stmts << file_ast.stmts
|
||||||
}
|
}
|
||||||
d.print_fns()
|
d.print_fns()
|
||||||
d.writeln('')
|
d.out.writeln('')
|
||||||
d.print_methods()
|
d.print_methods()
|
||||||
/*
|
/*
|
||||||
for stmt in file_ast.stmts {
|
for stmt in file_ast.stmts {
|
||||||
|
@ -59,36 +59,44 @@ pub fn doc(mod string, table &table.Table) string {
|
||||||
return d.out.str()
|
return d.out.str()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (d mut Doc) writeln(s string) {
|
fn (d &Doc) get_fn_node(f ast.FnDecl) string {
|
||||||
d.out.writeln(s)
|
return f.str(d.table).replace(d.mod + '.', '')
|
||||||
}
|
|
||||||
|
|
||||||
fn (d mut Doc) write_fn_node(f ast.FnDecl) {
|
|
||||||
d.writeln(f.str(d.table).replace(d.mod + '.', ''))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (d mut Doc) print_fns() {
|
fn (d mut Doc) print_fns() {
|
||||||
|
mut fn_names := []string
|
||||||
for stmt in d.stmts {
|
for stmt in d.stmts {
|
||||||
match stmt {
|
match stmt {
|
||||||
ast.FnDecl {
|
ast.FnDecl {
|
||||||
if it.is_pub && !it.is_method {
|
if it.is_pub && !it.is_method {
|
||||||
d.write_fn_node(it)
|
name := d.get_fn_node(it)
|
||||||
|
fn_names << name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {}
|
else {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
fn_names.sort()
|
||||||
|
for s in fn_names {
|
||||||
|
d.out.writeln(s)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (d mut Doc) print_methods() {
|
fn (d mut Doc) print_methods() {
|
||||||
|
mut fn_names := []string
|
||||||
for stmt in d.stmts {
|
for stmt in d.stmts {
|
||||||
match stmt {
|
match stmt {
|
||||||
ast.FnDecl {
|
ast.FnDecl {
|
||||||
if it.is_pub && it.is_method {
|
if it.is_pub && it.is_method {
|
||||||
d.write_fn_node(it)
|
name := d.get_fn_node(it)
|
||||||
|
fn_names << name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {}
|
else {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
fn_names.sort()
|
||||||
|
for s in fn_names {
|
||||||
|
d.out.writeln(s)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue