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:
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user