Skip to content

Commit

Permalink
Migrate the type-checker to a native AST representation
Browse files Browse the repository at this point in the history
  • Loading branch information
TristonianJones committed Aug 11, 2023
1 parent 337fc07 commit 7296860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/ast/conversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ func EntryExprToProto(e EntryExpr) (*exprpb.Expr_CreateStruct_Entry, error) {

func protoCall(id int64, call CallExpr) (*exprpb.Expr, error) {
var err error
var target *exprpb.Expr
var target *exprpb.Expr = nil
if call.IsMemberFunction() {
target, err = ExprToProto(call.Target())
if err != nil {
Expand Down

0 comments on commit 7296860

Please sign in to comment.