- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Search
Search results
- Problems running Android app (and some solutions)
-
... present. OK, then as a quick workaround try and locate scala-library.jar and explicitly add that to the launch configuration for ... > OK, then as a quick workaround try and locate scala-library.jar and > explicitly add that to the launch configuration ...
Forum topic - Noel Welsh - 2009-02-20, 07:17 - 8 comments
- tweaking partest
-
I checked in a partest patch. It's not 100% where I intend to get it but like it says in the commit message, it was either commit or claw my eyes out and run naked through a shopping mall. The examples below all use ant, but personally I use th ...
Forum topic - extempore - 2010-04-05, 07:37 - 0 comments
- help with missing class
-
... everyone, I can't compile my project even I link to the scala-library.jar. I'm using scala 2.8 final with ant 1.8.0 I got this ... I unzipped the scala-library.jar file, and couldn't find BoxedBooleanArray which exists in ... everyone, I can't compile my project even I link to the scala-library.jar. > > I'm using scala 2.8 final with ant 1.8.0 ...
Forum topic - billconan - 2010-07-27, 22:17 - 1 comment
- betrayed by traits
-
... the *ViewLike* classes constitute 10% of the size of scala-library.jar. Here's a little 400 KB taste: -rw-r--r-- 1 paulp ... > *ViewLike* classes constitute 10% of the size of scala-library.jar. > Here's a little 400 KB taste: > > ...
Forum topic - extempore - 2009-12-19, 07:17 - 3 comments
- An annotation to prevent implicit conversions for method arguments.
-
... an API. Imagine for a second that some classes in scala-library.jar had the requirement to mix implicit conversion and methods ... an API. Imagine for a second that some classes in scala-library.jar had the requirement to mix implicit conversion and methods ...
Forum topic - Lex - 2010-03-04, 13:37 - 10 comments
- scalac and classpath handling
-
... I need to invoke scalac: * using only the location of scala-library.jar and scala-compiler.jar * without scala.home set * ... where bootCp includes scala-library.jar and usersClasspath does not. This worked fine until ... Mark Harrah wrote: > * using only the location of scala-library.jar and scala-compiler.jar > * without scala.home set ...
Forum topic - Mark Harrah - 2010-02-12, 21:17 - 2 comments
- RE: A question on InterpreterLoop
-
... Here is my code and error, please advice. I have scala-library.jar and scala-compiler.jar on my class path, do I miss anything? ... Here is my code and error, please advice. I have scala-library.jar and scala-compiler.jar on my class path, do I miss anything? ...
Forum topic - Razvan Cojocaru 2 - 2010-05-06, 16:37 - 4 comments
- specialization on by default
-
Fasten your seat-belts, it's going to be a bumpy weekend! Specialization has landed in trunk, it's on by default (with a brand new option to turn it off, -no-specialization), and a selected number of classes in the standard library are now, you gu ...
Forum topic - Iulian Dragos 2 - 2010-04-09, 18:37 - 13 comments
- Scala and Android 1.5
-
... on here can help me get this working. To get the scala-library.jar file working I simply unpacked it, removed the ... on here can help me get this working. To get the scala-library.jar file working I simply unpacked it, removed the scala/testing ...
Forum topic - michaelg - 2009-06-11, 05:57 - 4 comments
- Distributing a Scala application
-
... get a NoClassDefFoundError if you are doing: java -cp scala-library.jar -jar app.jar The -cp option is ignored when -jar is specified, so you need to do something like: java -cp scala-library.jar:app.jar app.Main -Mark On Friday 27 March 2009 13:58, ...
Forum topic - Gilles SCOUVART - 2009-03-27, 19:07 - 3 comments