Skip to content

Commit

Permalink
fixes #1851; missing static fields for default values of keyword para…
Browse files Browse the repository at this point in the history
…meters
  • Loading branch information
jurgenvinju committed Aug 21, 2023
1 parent 42660db commit 1282289
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public Result<IValue> computeDefaultKeywordParameter(String label, IConstructor
}
else {
Expression def = getKeywordParameterDefaults().get(kwparam);
kwResult = def.interpret(eval);
kwResult = ResultFactory.makeResult(kwType, def.interpret(eval).value, ctx);
}

if (kwparam.equals(label)) {
Expand Down

0 comments on commit 1282289

Please sign in to comment.