RFR: 8263614: javac allows local variables to be accessed from a static context [v3]

Vicente Romero vromero at openjdk.java.net
Fri May 14 15:25:58 UTC 2021


> javac breaks with NPE if compiles this code:
> 
> 
> public class LocalClasses {
>     public static void main(String[] args) {
>         int i = 5;
>         class Local {
>             static void m() {
>                 System.out.println("Value of i = " + i);
>             }
>         }
>         Local.m();
>     }
> } 
> 
> 
> actually the compiler should issue a compiling error as local variable `i` is being accessed from a static context. Please review this fix to address this issue. Some notes:
> 
> `com.sun.tools.javac.comp.AttrContext.staticLevel` keeps a the number of nested static contexts but this calculation doesn't consider static type declarations. This is because static declaration doesn't introduce a static context. But if they have a static modifier, even if implicit as it is for local records, then this affects what variables, type variables, etc are accessible from the body of the static type declaration. For this reason I have used an `adjusted` static level that takes static type declarations into account.
> 
> TIA

Vicente Romero has updated the pull request incrementally with one additional commit since the last revision:

  patch suggested by Maurizio

-------------

Changes:
  - all: https://git.openjdk.java.net/jdk/pull/4004/files
  - new: https://git.openjdk.java.net/jdk/pull/4004/files/c062667b..073e42e2

Webrevs:
 - full: https://webrevs.openjdk.java.net/?repo=jdk&pr=4004&range=02
 - incr: https://webrevs.openjdk.java.net/?repo=jdk&pr=4004&range=01-02

  Stats: 38 lines in 1 file changed: 1 ins; 25 del; 12 mod
  Patch: https://git.openjdk.java.net/jdk/pull/4004.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/4004/head:pull/4004

PR: https://git.openjdk.java.net/jdk/pull/4004


More information about the compiler-dev mailing list