- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
@specialized and protected
Tue, 2011-08-23, 14:45
Hi,
I've just been trying to build scalala with sbt 0.10.1 and 2.9.0-1. The SparseArray class fails to build with:
[info] Compiling 130 Scala sources and 1 Java source to /home/nmrp3/devel/oss/Scalala/target/scala-2.9.0.1/classes... error compiling SparseArray.scala [source-/home/drdozer/devel/oss/Scalala/src/main/scala/scalala/collection/sparse/SparseArray.scala,line-309,offset=10005] [error] {file:/home/drdozer/devel/oss/Scalala/}default-a1cca2/compile: scala.tools.nsc.symtab.Types$TypeError: variable index in class SparseArray cannot be accessed in scalala.collection.sparse.SparseArray[Unit] [error] Access to protected method index not permitted because[error] prefix type scalala.collection.sparse.SparseArray[Unit] does not conform to [error] class SparseArray$mcV$sp in package sparse where the access take place[error] Total time: 46 s, completed 23-Aug-2011 14:33:07
The class is introduced as:
final class SparseArray[@specialized T](val length : Int, protected var index : Array[Int], protected var data : Array[T], protected var used : Int, initialActiveLength : Int) (implicit m : ClassManifest[T], df : DefaultArrayValue[T]) {
The problem method is:
def set(that : SparseArray[T]): Unit = { if (this.length != that.length) { throw new IllegalArgumentException("SparseArrays must be the same length"); } use(that.index.clone(), that.data.clone(), that.used); }
It is the access to that.index which is triggering the error. If I remove the @specialized annotation, the class compiles just fine. As a work-around, it compiles if I scope all the protected access modifiers to the current package with [sparse]. So, I'm left wondering if there's something weird going on with specialisation and protected access?
Thanks,
Matthew
--
Dr Matthew PocockVisitor, School of Computing Science, Newcastle Universitymailto: turingatemyhamster@gmail.com gchat: turingatemyhamster@gmail.commsn: matthew_pocock@yahoo.co.uk irc.freenode.net: drdozertel: (0191) 2566550mob: +447535664143
I've just been trying to build scalala with sbt 0.10.1 and 2.9.0-1. The SparseArray class fails to build with:
[info] Compiling 130 Scala sources and 1 Java source to /home/nmrp3/devel/oss/Scalala/target/scala-2.9.0.1/classes... error compiling SparseArray.scala [source-/home/drdozer/devel/oss/Scalala/src/main/scala/scalala/collection/sparse/SparseArray.scala,line-309,offset=10005] [error] {file:/home/drdozer/devel/oss/Scalala/}default-a1cca2/compile: scala.tools.nsc.symtab.Types$TypeError: variable index in class SparseArray cannot be accessed in scalala.collection.sparse.SparseArray[Unit] [error] Access to protected method index not permitted because[error] prefix type scalala.collection.sparse.SparseArray[Unit] does not conform to [error] class SparseArray$mcV$sp in package sparse where the access take place[error] Total time: 46 s, completed 23-Aug-2011 14:33:07
The class is introduced as:
final class SparseArray[@specialized T](val length : Int, protected var index : Array[Int], protected var data : Array[T], protected var used : Int, initialActiveLength : Int) (implicit m : ClassManifest[T], df : DefaultArrayValue[T]) {
The problem method is:
def set(that : SparseArray[T]): Unit = { if (this.length != that.length) { throw new IllegalArgumentException("SparseArrays must be the same length"); } use(that.index.clone(), that.data.clone(), that.used); }
It is the access to that.index which is triggering the error. If I remove the @specialized annotation, the class compiles just fine. As a work-around, it compiles if I scope all the protected access modifiers to the current package with [sparse]. So, I'm left wondering if there's something weird going on with specialisation and protected access?
Thanks,
Matthew
--
Dr Matthew PocockVisitor, School of Computing Science, Newcastle Universitymailto: turingatemyhamster@gmail.com gchat: turingatemyhamster@gmail.commsn: matthew_pocock@yahoo.co.uk irc.freenode.net: drdozertel: (0191) 2566550mob: +447535664143
Tue, 2011-08-23, 15:47
#2
Re: @specialized and protected
Oh, thanks for finding that. Pitty.
Matthew
--
Dr Matthew PocockVisitor, School of Computing Science, Newcastle Universitymailto: turingatemyhamster@gmail.com gchat: turingatemyhamster@gmail.commsn: matthew_pocock@yahoo.co.uk irc.freenode.net: drdozertel: (0191) 2566550mob: +447535664143
Matthew
https://issues.scala-lang.org/browse/SI-4541
Search for 'scalala' for additional problems.
-jason
--
Dr Matthew PocockVisitor, School of Computing Science, Newcastle Universitymailto: turingatemyhamster@gmail.com gchat: turingatemyhamster@gmail.commsn: matthew_pocock@yahoo.co.uk irc.freenode.net: drdozertel: (0191) 2566550mob: +447535664143
On Tue, Aug 23, 2011 at 3:45 PM, Matthew Pocock
wrote:
> Hi,
> I've just been trying to build scalala with sbt 0.10.1 and 2.9.0-1. The
> SparseArray class fails to build with:
> [info] Compiling 130 Scala sources and 1 Java source to
> /home/nmrp3/devel/oss/Scalala/target/scala-2.9.0.1/classes...
> error compiling SparseArray.scala
> [source-/home/drdozer/devel/oss/Scalala/src/main/scala/scalala/collection/sparse/SparseArray.scala,line-309,offset=10005]
> [error] {file:/home/drdozer/devel/oss/Scalala/}default-a1cca2/compile:
> scala.tools.nsc.symtab.Types$TypeError: variable index in class SparseArray
> cannot be accessed in scalala.collection.sparse.SparseArray[Unit]
> [error] Access to protected method index not permitted because
> [error] prefix type scalala.collection.sparse.SparseArray[Unit] does not
> conform to
> [error] class SparseArray$mcV$sp in package sparse where the access take
> place
> [error] Total time: 46 s, completed 23-Aug-2011 14:33:07
> The class is introduced as:
> final class SparseArray[@specialized T]
> (val length : Int, protected var index : Array[Int], protected var data :
> Array[T], protected var used : Int, initialActiveLength : Int)
> (implicit m : ClassManifest[T], df : DefaultArrayValue[T]) {
> The problem method is:
> def set(that : SparseArray[T]): Unit = {
> if (this.length != that.length) {
> throw new IllegalArgumentException("SparseArrays must be the same
> length");
> }
> use(that.index.clone(), that.data.clone(), that.used);
> }
> It is the access to that.index which is triggering the error. If I remove
> the @specialized annotation, the class compiles just fine. As a work-around,
> it compiles if I scope all the protected access modifiers to the current
> package with [sparse]. So, I'm left wondering if there's something weird
> going on with specialisation and protected access?
https://issues.scala-lang.org/browse/SI-4541
Search for 'scalala' for additional problems.
-jason