public inbox for kawa@sourceware.org
 help / color / mirror / Atom feed
From: Panicz Maciej Godek <godek.maciek@gmail.com>
To: Per Bothner <per@bothner.com>
Cc: kawa@sourceware.org
Subject: Re: A protected slot is not accessible in a subclass
Date: Fri, 25 Mar 2022 10:59:29 +0100	[thread overview]
Message-ID: <CAMFYt2Zu7tFhR0HHe5psRGGREH63VPkLN4HFb59R1wOFWFXtAw@mail.gmail.com> (raw)
In-Reply-To: <31ee8d16-0229-3c1a-a11d-2402f4fdffce@bothner.com>

Thanks for the reply!

I tried this:


(define-simple-class S (gnu.mapping.Symbol)
   ((*init*)
    (invoke-special gnu.mapping.Symbol (this) '*init*
(("foo":toString):intern) gnu.mapping.Namespace:EmptyNamespace)
 (set! (field (this) 'name) (("bar":toString):intern))))


(define s::S(S))

but it gives a similar error:

java.lang.RuntimeException: no such field name in S
        at gnu.kawa.reflect.SlotSet.apply(SlotSet.java:115)
        at gnu.kawa.reflect.SlotSet.apply3(SlotSet.java:120)
        at S.<init>(tty:14)

I also tried replacing

(field (this) 'name)

with



(field (as gnu.mapping.Symbol (this) 'name)

but it didn't change anything.

Outside the setter context, (field (this) 'name) works fine.

BTW my previous message contained an error - instead of

(invoke-special gnu.mapping.Symbol (("foo":toString):intern)
gnu.mapping.Namespace:EmptyNamespace)

I should of course have written

(invoke-special gnu.mapping.Symbol (this) '*init* (("foo":toString):intern)
gnu.mapping.Namespace:EmptyNamespace)

I mistakenly omitted it while I was writing the message.

pt., 25 mar 2022, 05:56 użytkownik Per Bothner <per@bothner.com> napisał:

>
> On 3/24/22 15:14, Panicz Maciej Godek via Kawa wrote:
> > I get the following error:
> >
> > slot 'name' in gnu.mapping.Symbol not accessible here
> >
> > What are the rules for accessing protected members in Kawa?
>
> The rules are supposed to be the same as in Java
> (because those rules are enforced by the JVM).
> However, those rules are actually a bit complicated:
> https://docs.oracle.com/javase/specs/jls/se11/html/jls-6.html#jls-6.6.2
>
> In this case there is a bug in Kawa. It treats
>    (set! name ...)
> as equivalent to:
>    (set! (this):name ...)
> which is fine.
>
> However, there seems to a problem where Kawa thinks (this) has the type
> Symbol (because that is
> where name is defined) rather than class S.  And this violates the rule:
>
>      If the access is by (i) a qualified name of the form
> ExpressionName.Id or TypeName.Id, or
>      (ii) a field access expression of the form Primary.Id, then access to
> the instance field Id
>      is permitted if and only if the qualifying type is S or a subclass of
> S.
>
>      The qualifying type is the type of the ExpressionName or Primary, or
> the type denoted by TypeName.
>
> A work-around is to use the field special procedure:
>
>     (set! (field (this) 'name) ...)


>

  reply	other threads:[~2022-03-25  9:59 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-24 22:14 Panicz Maciej Godek
2022-03-25  4:56 ` Per Bothner
2022-03-25  9:59   ` Panicz Maciej Godek [this message]
2022-03-25 18:46     ` Per Bothner
2022-03-25 20:53       ` Panicz Maciej Godek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAMFYt2Zu7tFhR0HHe5psRGGREH63VPkLN4HFb59R1wOFWFXtAw@mail.gmail.com \
    --to=godek.maciek@gmail.com \
    --cc=kawa@sourceware.org \
    --cc=per@bothner.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).