Skip to content

Commit

Permalink
Update VlppWorkflowCompiler.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
vczh committed Aug 2, 2020
1 parent 948c722 commit 9e440cd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Import/VlppWorkflowCompiler.cpp
Expand Up @@ -9542,6 +9542,14 @@ IsExpressionDependOnExpectedType(Expression)
result = scope->symbols.Count() > 0;
}

void Visit(WfBinaryExpression* node)override
{
if (node->op == WfBinaryOperator::Intersect)
{
result = Execute(node->first) && Execute(node->second);
}
}

void Visit(WfLiteralExpression* node)override
{
if (node->value == WfLiteralValue::Null)
Expand Down

0 comments on commit 9e440cd

Please sign in to comment.