Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
Update Interp.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
moxie-coder authored Sep 3, 2023
1 parent c7bbf44 commit 74f6056
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/hscript/Interp.hx
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,9 @@ class Interp {
return val;
case EMeta(_, _, e):
return expr(e);
// copy of the above
case ECheckType(e, _):
return expr(e);

default: return null;
}
Expand Down Expand Up @@ -675,4 +678,4 @@ class Interp {
return Type.createInstance(c,args);
}

}
}

0 comments on commit 74f6056

Please sign in to comment.