From 04184f1715ccd2eaf196b42bfe74abdf8e2e211c Mon Sep 17 00:00:00 2001 From: lydiandy <56576373+lydiandy@users.noreply.github.com> Date: Wed, 18 Mar 2020 22:39:26 +0800 Subject: [PATCH] ast: make ReturnStmt field public --- vlib/v/ast/ast.v | 1 + 1 file changed, 1 insertion(+) diff --git a/vlib/v/ast/ast.v b/vlib/v/ast/ast.v index 8f537c3b2e..660312ba2d 100644 --- a/vlib/v/ast/ast.v +++ b/vlib/v/ast/ast.v @@ -404,6 +404,7 @@ pub: } pub struct ReturnStmt { +pub: tok_kind token.Kind // or pos results []Expr pos token.Position