Skip to content

Commit

Permalink
complement for #3366
Browse files Browse the repository at this point in the history
  • Loading branch information
hqn88 authored and hqn88 committed May 5, 2022
1 parent dd33b00 commit acda6db
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -215,7 +215,7 @@ public String literalValue() {

@Override
public IExpression resolveAgainst(final IScope scope) {
return new PrimitiveOperator(action, target.resolveAgainst(scope), parameters.resolveAgainst(scope),
return new PrimitiveOperator(action, target==null?null:target.resolveAgainst(scope), parameters==null?null:parameters.resolveAgainst(scope),
targetSpecies);
}

Expand Down

0 comments on commit acda6db

Please sign in to comment.