We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
private boolean isW3C(MethodInvocation invocation) { MethodBinding methodBinding= invocation.getMethodBinding(); // ... if (methodBinding.equals("org.w3c.dom5.NamedNodeMap")) { if (name.equals("setNamedItemNS") || name.equals("setNamedItem")) return false; } if (methodBinding.equals("org.w3c.dom5.Element")) { if (name.equals("setAttributeNode") || name.equals("setAttributeNodeNS")) return false; } // ... }
dragome-sdk/dragome-bytecode-js-compiler/src/main/java/com/dragome/compiler/generators/DragomeJavaScriptGenerator.java
Line 848 in e3fd2f1
and
Line 853 in e3fd2f1
methodBinding is MethodBinding and dont have override equals function. and you try compare with text string @_@
The text was updated successfully, but these errors were encountered:
Hi, this method is not in use, I'll remove it in next release. thanks for the feedback
Sorry, something went wrong.
No branches or pull requests
dragome-sdk/dragome-bytecode-js-compiler/src/main/java/com/dragome/compiler/generators/DragomeJavaScriptGenerator.java
Line 848 in e3fd2f1
and
dragome-sdk/dragome-bytecode-js-compiler/src/main/java/com/dragome/compiler/generators/DragomeJavaScriptGenerator.java
Line 853 in e3fd2f1
methodBinding is MethodBinding and dont have override equals function.
and you try compare with text string @_@
The text was updated successfully, but these errors were encountered: