Skip to content
Snippets Groups Projects
Commit 7a425d5a authored by Christian Humer's avatar Christian Humer
Browse files

Add PairList support for Precedence node.

parent 7958d685
No related branches found
No related tags found
No related merge requests found
......@@ -156,6 +156,11 @@ public abstract class PrecedenceNode extends RBaseNode {
return LIST_PRECEDENCE;
}
@Specialization(guards = "recursive != LOGICAL_TRUE")
protected int doPairList(RPairList val, byte recursive) {
return LIST_PRECEDENCE;
}
@Specialization
protected int doDataFrame(RDataFrame val, byte recursive) {
return LIST_PRECEDENCE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment