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
UnaryOperation.makeOperation is currently the single place to define mapping from operation expressions (initially for FDML processing instructions). The DAP2 service interface uses the same operation syntax so we should be able to reuse UnaryOperation.makeOperation.
The text was updated successfully, but these errors were encountered:
I just want to point out that UnaryOperation.makeOperation takes name: String and args: List[String] as input, meaning the expression (a string) has already been parsed into these components. Right now, FdmlParser.parseExpression turns a string expression into a CExpr and FdmlReader.makeOperation opens it up and passes name and args to UnaryOperation.makeOperation.
lindholc
changed the title
Modify Dap2Service to us UnaryOperation.makeOperation
Modify Dap2Service to use UnaryOperation.makeOperation
Sep 17, 2020
UnaryOperation.makeOperation
is currently the single place to define mapping from operation expressions (initially for FDML processing instructions). The DAP2 service interface uses the same operation syntax so we should be able to reuseUnaryOperation.makeOperation
.The text was updated successfully, but these errors were encountered: