doc: use the new table.type_to_str

pull/6613/head
Alexander Medvednikov 2020-10-13 16:46:56 +02:00
parent a07f31feae
commit 194c2c926e
1 changed files with 2 additions and 2 deletions

View File

@ -397,7 +397,7 @@ pub fn (mut d Doc) generate_from_ast(file_ast ast.File, orig_mod_name string) []
continue
}
if stmt.receiver.typ != 0 {
node.attrs['parent'] = d.fmt.type_to_str(stmt.receiver.typ).trim_left('&')
node.attrs['parent'] = d.fmt.table.type_to_str(stmt.receiver.typ).trim_left('&')
p_idx := contents.index_by_name(node.attrs['parent'])
if p_idx == -1 && node.attrs['parent'] != 'void' {
contents << DocNode{
@ -453,7 +453,7 @@ pub fn (mut d Doc) generate_from_ast_with_pos(file_ast ast.File, pos int) []DocN
fn (mut d Doc) expr_typ_to_string(ex ast.Expr) string {
expr_typ := d.checker.expr(ex)
return d.fmt.type_to_str(expr_typ)
return d.fmt.table.type_to_str(expr_typ)
}
fn (mut d Doc) generate() ?Doc {