Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8244244: Better representing typedef in jextract API #137

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -227,11 +227,7 @@ enum Kind {
/**
* Function parameter declaration.
*/
PARAMETER,
/**
* Type definition declaration.
*/
TYPE;
PARAMETER;
}

/**
Expand Down
Expand Up @@ -200,11 +200,7 @@ public boolean equals(Object o) {
if (!(o instanceof Declaration.Variable)) return false;

Declaration.Variable variable = (Declaration.Variable) o;
if (variable.kind() == Kind.TYPE) {
if (!variable.name().equals(name())) return false;
} else {
if (!super.equals(o)) return false;
}
if (!super.equals(o)) return false;
return kind == variable.kind() &&
type.equals(variable.type());
}
Expand Down
185 changes: 0 additions & 185 deletions test/jdk/java/jextract/TestAnonymousDecl.java

This file was deleted.

90 changes: 0 additions & 90 deletions test/jdk/java/jextract/anonymousDecl.h

This file was deleted.