Merge pull request #374 from John-Colvin/more_reserved_words

java translation: more reserved words
This commit is contained in:
Adam D. Ruppe 2023-03-05 07:50:30 -05:00 committed by GitHub
commit 08c07cda3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 2 deletions

16
jni.d
View File

@ -360,11 +360,18 @@ private inout(char)[] fixupKeywordsInJavaPackageName(inout(char)[] s) {
s = s.replace(".function.", ".function_.");
s = s.replace(".ref.", ".ref_.");
s = s.replace(".module.", ".module_.");
s = s.replace(".package.", ".package_.");
s = s.replace(".debug.", ".debug_.");
s = s.replace(".version.", ".version_.");
s = s.replace(".asm.", ".asm_.");
s = s.replace(".shared.", ".shared_.");
s = s.replace(".scope.", ".scope_.");
return s[0 .. $-1]; // god i am such a bad programmer
}
private inout(char)[] fixupJavaClassName(inout(char)[] s) {
if(s == "Throwable" || s == "Object" || s == "Exception" || s == "Error" || s == "TypeInfo")
import std.algorithm : among;
if(s.among("Throwable", "Object", "Exception", "Error", "TypeInfo", "ClassInfo", "version"))
s = cast(typeof(s)) "Java" ~ s;
return s;
}
@ -552,7 +559,12 @@ void rawClassStructToD()(ref ClassFile cf, string dPackagePrefix, string outputD
auto name = method.name;
// FIXME: maybe check name for other D keywords but since so many overlap with java I think we will be ok most the time for now
if(name == "debug" || name == "delete" || name == "with" || name == "version" || name == "cast" || name == "union" || name == "align" || name == "alias" || name == "in" || name == "out" || name == "toString" || name == "init" || name == "lazy" || name == "immutable" || name == "is" || name == "function" || name == "delegate" || name == "template") {
import std.algorithm : among;
if(name.among("package", "export", "bool", "module", "debug",
"delete", "with", "version", "cast", "union", "align",
"alias", "in", "out", "toString", "init", "lazy",
"immutable", "is", "function", "delegate", "template",
"scope")) {
// toString is special btw in order to avoid a dmd bug
port ~= " @JavaName(\""~name~"\")";
name ~= "_";