Turn mkString(Symbol) into a method

This commit is contained in:
Eelco Dolstra
2022-01-04 19:09:40 +01:00
parent ed93aec3c3
commit ca5baf2392
3 changed files with 11 additions and 14 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ struct ExprString : Expr
{
Symbol s;
Value v;
ExprString(const Symbol & s) : s(s) { mkString(v, s); };
ExprString(const Symbol & s) : s(s) { v.mkString(s); };
COMMON_METHODS
Value * maybeThunk(EvalState & state, Env & env);
};