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
Consider the following:
int a = 1 int b = 2 def c = a / b println(c) println(c.class)
This script prints "0.5" and "java.math.BigDecimal" however the hover for "c" indicates the type "int". https://docs.groovy-lang.org/latest/html/documentation/#_math_operations
The text was updated successfully, but these errors were encountered:
Fix for #1590: type of add, subtract, multiply, divide, remainder, power
17947d3
Sorry, something went wrong.
eric-milles
No branches or pull requests
Consider the following:
This script prints "0.5" and "java.math.BigDecimal" however the hover for "c" indicates the type "int". https://docs.groovy-lang.org/latest/html/documentation/#_math_operations
The text was updated successfully, but these errors were encountered: