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
Branches
No related tags found
No related merge requests found
...@@ -156,6 +156,11 @@ public abstract class PrecedenceNode extends RBaseNode { ...@@ -156,6 +156,11 @@ public abstract class PrecedenceNode extends RBaseNode {
return LIST_PRECEDENCE; return LIST_PRECEDENCE;
} }
@Specialization(guards = "recursive != LOGICAL_TRUE")
protected int doPairList(RPairList val, byte recursive) {
return LIST_PRECEDENCE;
}
@Specialization @Specialization
protected int doDataFrame(RDataFrame val, byte recursive) { protected int doDataFrame(RDataFrame val, byte recursive) {
return LIST_PRECEDENCE; return LIST_PRECEDENCE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment