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

ast: make ReturnStmt field public

This commit is contained in:
lydiandy 2020-03-18 22:39:26 +08:00 committed by GitHub
parent c4f6125a31
commit 04184f1715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -404,6 +404,7 @@ pub:
}
pub struct ReturnStmt {
pub:
tok_kind token.Kind // or pos
results []Expr
pos token.Position