1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ast: remove redundant import v.ast

This commit is contained in:
Delyan Angelov
2021-04-02 08:31:29 +03:00
parent 5ac9e39d44
commit 69ba93f954
3 changed files with 6 additions and 11 deletions

View File

@ -3,8 +3,6 @@
// that can be found in the LICENSE file.
module ast
import v.ast
pub struct Scope {
pub mut:
// mut:
@ -18,7 +16,7 @@ pub mut:
}
pub fn new_scope(parent &Scope, start_pos int) &Scope {
return &ast.Scope{
return &Scope{
parent: parent
start_pos: start_pos
}