mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ast: add case for Import in fn (node Stmt) str()
This commit is contained in:
parent
4923048d95
commit
204cc5fb01
@ -356,6 +356,13 @@ pub fn (node Stmt) str() string {
|
||||
Module {
|
||||
return 'module $node.name'
|
||||
}
|
||||
Import {
|
||||
mut out := 'import $node.mod'
|
||||
if node.alias.len > 0 {
|
||||
out += ' as $node.alias'
|
||||
}
|
||||
return out
|
||||
}
|
||||
StructDecl {
|
||||
return 'struct $node.name { $node.fields.len fields }'
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user