Skip to content
Snippets Groups Projects
Commit 0a6b7c68 authored by Florian Angerer's avatar Florian Angerer
Browse files

Renaming.

parent 1b0f15f1
Branches
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ public abstract class SizeToOctalRawNode extends UnaryNode {
public abstract RRawVector execute(Object size);
@Specialization
protected RRawVector octSize(int s) {
protected RRawVector doInt(int s) {
return RDataFactory.createRawVector(toOctalAsciiString(s));
}
......@@ -65,7 +65,7 @@ public abstract class SizeToOctalRawNode extends UnaryNode {
// Transcribed from ".../utils/src/stubs.c"
@Specialization
protected RRawVector octSize(double size,
protected RRawVector doDouble(double size,
@Cached("create()") SetDataAt.Raw setDataNode) {
double s = size;
......@@ -86,7 +86,7 @@ public abstract class SizeToOctalRawNode extends UnaryNode {
}
@Specialization
protected RRawVector octSize(@SuppressWarnings("unused") RNull n) {
protected RRawVector doNull(@SuppressWarnings("unused") RNull n) {
return RDataFactory.createRawVector(11);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment