You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
addError("Using the `.out` property to access process/workflow outputs is not supported with static typing -- assign the output to a variable instead", node);
1207
+
return;
1208
+
}
1209
+
1202
1210
varreceiver = node.getObjectExpression();
1203
1211
varreceiverType = getType(receiver);
1204
1212
if( ClassHelper.isDynamicTyped(receiverType) )
@@ -1217,15 +1225,8 @@ public void visitPropertyExpression(PropertyExpression node) {
1217
1225
return;
1218
1226
}
1219
1227
1220
-
varmn = asMethodNamedOutput(node);
1221
1228
varproperty = node.getPropertyAsString();
1222
-
if( mninstanceofProcessNodepn ) {
1223
-
addError("Unrecognized output `" + property + "` for process `" + pn.getName() + "`", node);
0 commit comments