-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fields for final var not found. #1878
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
Comments
Probably related: #1348 (comment) |
odersky
added a commit
that referenced
this issue
Jan 5, 2017
Fix #1878: Generate fields for final vars.
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 5, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 9, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 10, 2017
This reverts commit 63d68bf.
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 10, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 10, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 11, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 12, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 12, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 27, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Feb 9, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Feb 13, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Feb 16, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Feb 21, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Feb 22, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 2, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 2, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 15, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 16, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 20, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 20, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 27, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 29, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 30, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 31, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Apr 3, 2017
nicolasstucki
added a commit
to nicolasstucki/dotty
that referenced
this issue
Apr 6, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Apr 7, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Apr 10, 2017
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Apr 12, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When we declare a
final var
and then assign a new value we get aNoSuchFieldError
.In the byte code we get:
Which makes me think that we are handling
final var
as afinal val
at some point because thefalse
initial value was inlined in the getter and the field is not there.The text was updated successfully, but these errors were encountered: