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

v.ast: remove unused path and expr fields in Module (#7625)

This commit is contained in:
lydiandy 2020-12-31 18:17:59 +08:00 committed by GitHub
parent 45495c3ebb
commit 20f507651e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,8 +130,6 @@ pub fn (e &SelectorExpr) root_ident() Ident {
pub struct Module {
pub:
name string
path string
expr Expr
pos token.Position
is_skipped bool // module main can be skipped in single file programs
}