Skip to content
Snippets Groups Projects
Commit eb562b8d authored by Mick Jordan's avatar Mick Jordan
Browse files

add RNull specialization to setLocale

parent 6671cf0b
Branches
No related tags found
No related merge requests found
......@@ -80,6 +80,15 @@ public class LocaleFunctions {
// TODO implement properly!!
return locale;
}
@SuppressWarnings("unused")
@TruffleBoundary
@Specialization
protected Object setLocale(RAbstractIntVector categoryVec, RNull locale) {
controlVisibility();
// TODO implement properly!!
return locale;
}
}
@RBuiltin(name = "Sys.localeconv", kind = RBuiltinKind.INTERNAL, parameterNames = {})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment