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
stop(sprintf("Callback parameters must be inputs or states. Please verify formatting of callback parameters."), call.=FALSE)
376
380
}
377
381
378
-
# Verify that 'input' parameters always precede 'state', if present
379
-
if (!(valid_seq(params))) {
380
-
stop(sprintf("Strict ordering of callback handler parameters is required. Please ensure that input parameters precede all state parameters."), call.=FALSE)
382
+
# Verify that output contains no elements that are not either members of 'output' or 'state' classes
383
+
if (any(invalid_outputs)) {
384
+
stop(sprintf("Callback outputs must be outputs or states. Please verify formatting of callback outputs."), call.=FALSE)
381
385
}
382
386
387
+
383
388
# Assert that the component ID as passed is a string.
384
389
# This function inspects the output object to see if its ID
0 commit comments