14 lines
352 B
Text
14 lines
352 B
Text
|
proposal Pipeline{
|
||
|
|
||
|
case SingleArgument {
|
||
|
applicable to {
|
||
|
"<<someFunctionIdent:Identifier || MemberExpression>>(<<otherFunctionIdent:Identifier || MemberExpression>>(<<arggg:Identifier>>));"
|
||
|
}
|
||
|
|
||
|
transform to {
|
||
|
"(<<arggg>> |> <<otherFunctionIdent>>(%)) |> <<someFunctionIdent>>(%);"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|