Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Talk:JDT Core/Plan/4.8/JEP286

Revision as of 10:21, 21 November 2017 by Jesper.selskabet.org (Talk | contribs) (Comments for page version of 2017-11-20)

Comments for page version of 2017-11-20

  • Grammar: yes, avoiding any grammar changes sounds great.
  • Errors:
    • "Cannot use 'val' ...", should read 'var', right?
  • DOM: we need to define a strategy for getType() methods of VariableDeclarationExpression and VariableDeclarationStatement, where we don't have a type reference (AST) to answer, but answering null is probably not an option, either.
  • Quick fix: is specifying the allocation type (implementation) better then declaring the variable type? I think the opposite is the case. Inversely, for documentation purposes, a quick fix to change 'var' to the inferred type could be useful, IMHO (support lazy typing, consolidate later). Of course all this is a matter of style.

Stephan.herrmann.berlin.de (talk) 08:33, 21 November 2017 (EST)

Comments for page version of 2017-11-21

  • Specifying the source/target/compliance levels on the compiler is going to be tricky for JDK10, since it uses the same major versions in the classfile.

I'm suggesting handling this using the majorVersion from JDK9 + a pseudo minorVersion of 0x8001 for JDK-10. That way we can still use integer comparison for checking versions in the compiler.

  • "Cannot use 'val' ..." has been corrected.
  • DOM: getType() on VariableDeclarationExpression and VariableDeclarationStatement: This would only be an issue when the type cannot be inferred, right? I guess we should do it the same way we do for lambda types which can't be inferred. although I'm not sure what we do there...
  • Quick fix: I got the idea from working with a different IDE using C#, it had a "Use 'var' instead"-assistance. I actually like the 'var'-style (provided you use good variable names).

Perhaps we should have a code style setting (local variables: prefer 'var' / prefer typenames), and use that to control irritants and quick fixes.

--Jesper.selskabet.org (talk) 09:21, 21 November 2017 (EST)

Back to the top