This page is no longer maintained — Please continue to the home page at www.scala-lang.org

:javap and nested classes

6 replies
gkossakowski
Joined: 2010-03-11,
User offline. Last seen 33 weeks 5 days ago.

Hi,

Welcome to Scala version 2.9.0.RC2 (Java HotSpot(TM) 64-Bit Server VM,
Java 1.6.0_24).
Type in expressions to have them evaluated.
Type :help for more information.

scala> object A {
| case class Bippy(x: String)
| }
defined module A

scala> :javap A
Compiled from ""
public final class A$ extends java.lang.Object implements scala.ScalaObject{
public static final A$ MODULE$;
public static {};
public A$();
}

scala> :javap A.Bippy
Failed: Could not find class bytes for 'A.Bippy'

Is this expected? Is there any syntax to refer Bippy for :javap?

extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: :javap and nested classes

On 4/29/11 12:55 PM, Grzegorz Kossakowski wrote:
> scala> :javap A.Bippy
> Failed: Could not find class bytes for 'A.Bippy'
>
> Is this expected? Is there any syntax to refer Bippy for :javap?

Is it expected? No, it looks like a bug. I'd be hard pressed to call
this "syntax", but...

scala> object A { case class Bippy(x: String) }
defined module A

scala> println(A.Bippy("").getClass)
class $line1.$read$$iw$$iw$A$Bippy

scala> :javap $line1.$read$$iw$$iw$A$Bippy
Compiled from ""
public class A$Bippy extends java.lang.Object implements
scala.ScalaObject,scala.Product,scala.Serializable{
public scala.collection.Iterator productIterator();
public scala.collection.Iterator productElements();
public java.lang.String x();
public A$Bippy copy(java.lang.String);
public java.lang.String copy$default$1();
public int hashCode();
public java.lang.String toString();
public boolean equals(java.lang.Object);
public java.lang.String productPrefix();
public int productArity();
public java.lang.Object productElement(int);
public boolean canEqual(java.lang.Object);
public A$Bippy(java.lang.String);
}

roland.kuhn
Joined: 2011-02-21,
User offline. Last seen 35 weeks 3 days ago.
Re: :javap and nested classes

Am 29.04.2011 21:55, schrieb Grzegorz Kossakowski:
> Hi,
>
> Welcome to Scala version 2.9.0.RC2 (Java HotSpot(TM) 64-Bit Server VM,
> Java 1.6.0_24).
> Type in expressions to have them evaluated.
> Type :help for more information.
>
> scala> object A {
> | case class Bippy(x: String)
> | }
> defined module A
>
> scala> :javap A
> Compiled from ""
> public final class A$ extends java.lang.Object implements scala.ScalaObject{
> public static final A$ MODULE$;
> public static {};
> public A$();
> }
>
> scala> :javap A.Bippy
> Failed: Could not find class bytes for 'A.Bippy'
>
> Is this expected? Is there any syntax to refer Bippy for :javap?
>
Well, you should start out with println(A.getClass) to find the real
name of the class (probably something like $line1.$read$$iw$$iw$A) and
then append $Bippy to that. At least I had success with this before
:javap was disabled on Windows ;-) (at least it tells me so)

Regards,

Roland

extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: :javap and nested classes

On 4/29/11 1:08 PM, Grzegorz Kossakowski wrote:

> Thanks Paul and Roland. That's good enough for me but do you want me
> to file a ticket so this doesn't get forgotten?

Please do.

Lex
Joined: 2010-02-28,
User offline. Last seen 42 years 45 weeks ago.
Re: :javap and nested classes

This is a guess: try A$.Bippy.

On Fri, Apr 29, 2011 at 2:55 PM, Grzegorz Kossakowski
wrote:
> Hi,
>
> Welcome to Scala version 2.9.0.RC2 (Java HotSpot(TM) 64-Bit Server VM,
> Java 1.6.0_24).
> Type in expressions to have them evaluated.
> Type :help for more information.
>
> scala> object A {
>     | case class Bippy(x: String)
>     | }
> defined module A
>
> scala> :javap A
> Compiled from ""
> public final class A$ extends java.lang.Object implements scala.ScalaObject{
>    public static final A$ MODULE$;
>    public static {};
>    public A$();
> }
>
> scala> :javap A.Bippy
> Failed: Could not find class bytes for 'A.Bippy'
>
> Is this expected? Is there any syntax to refer Bippy for :javap?
>
> --
> Grzegorz Kossakowski
>

gkossakowski
Joined: 2010-03-11,
User offline. Last seen 33 weeks 5 days ago.
Re: :javap and nested classes

2011/4/29 Paul Phillips :
>
> Please do.

https://lampsvn.epfl.ch/trac/scala/ticket/4532

gkossakowski
Joined: 2010-03-11,
User offline. Last seen 33 weeks 5 days ago.
Re: :javap and nested classes

2011/4/29 Paul Phillips :
> On 4/29/11 12:55 PM, Grzegorz Kossakowski wrote:
>> scala> :javap A.Bippy
>> Failed: Could not find class bytes for 'A.Bippy'
>>
>> Is this expected? Is there any syntax to refer Bippy for :javap?
>
> Is it expected? No, it looks like a bug.  I'd be hard pressed to call
> this "syntax", but...
>
> scala> object A { case class Bippy(x: String) }
> defined module A
>
> scala> println(A.Bippy("").getClass)
> class $line1.$read$$iw$$iw$A$Bippy
>
> scala> :javap $line1.$read$$iw$$iw$A$Bippy

Thanks Paul and Roland. That's good enough for me but do you want me
to file a ticket so this doesn't get forgotten?

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland