summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Moved inline logic before pickler.Grzegorz Kossakowski2012-08-093-76/+81
| | | | | | | | | | | | | | The test case failed due to separate compilation. The problem was that we don't pickle the fact that the field was made public. Original patch by @odersky. Cleaned up by me. Changes I made: * removed stale test-case * reduced whitespace changes Supersedes #1089. Review by @odersky and @moors.
* Merge pull request #1087 from hubertp/2.10.x-issue/5687Adriaan Moors2012-08-081-1/+9
|\ | | | | Fixes SI-5687.
| * Fixes SI-5687.Hubert Plociniczak2012-08-081-1/+9
| | | | | | | | | | Recover from erroneous type alias override to report more useful error message.
* | Merge pull request #1073 from adriaanm/ticket-6183Adriaan Moors2012-08-081-2/+3
|\ \ | | | | | | SI-6183 don't crash on type error in outer test
| * | SI-6183 don't crash on type error in outer testAdriaan Moors2012-08-071-2/+3
| | | | | | | | | | | | | | | unfortunately without test case since the report was hard to minimize since it was a crash on erroneous code, I figured a backstop against a crash should suffice
* | | Merge pull request #1056 from heathermiller/try-based-futuresAdriaan Moors2012-08-086-122/+103
|\ \ \ | | | | | | | | Bases futures on Try instead of Either
| * | | Doc fix on exec ctx prepare method, fix to testsHeather Miller2012-08-082-2/+3
| | | |
| * | | Added tests, removal of unnecessary methods, fixes prepareHeather Miller2012-08-073-23/+7
| | | |
| * | | Merge branch 'try-based-futures' of https://github.com/heathermiller/scala ↵Heather Miller2012-08-052-3/+17
| |\ \ \ | | | | | | | | | | | | | | | into try-based-futures
| | * | | SI-6185 - add "prepare" hook to ExecutionContextphaller2012-08-052-3/+17
| | | | | | | | | | | | | | | | | | | | | | | | | Enables important abstractions to be built on top of futures, such as Twitter's "Local" for handling data local to a callback chain.
| * | | | Temporarily skips failing test due to optimizer bug SI-6188Heather Miller2012-08-051-1/+1
| |/ / / | | | | | | | | | | | | Also swaps the arguments to method transform on Try, so as to mirror transform on scala.concurrent.Future.
| * | | Basing Futures on Try instead of EitherHeather Miller2012-08-045-105/+87
| | | |
* | | | Merge pull request #1079 from scalamacros/ticket/5947Adriaan Moors2012-08-082-25/+41
|\ \ \ \ | | | | | | | | | | reflection now correctly supports inner classes and modules
| * | | | SI-5947 works around getDeclaredClassesEugene Burmako2012-08-082-9/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Our name mangling scheme w.r.t stuff nested into objects conflicts with JVM's ideas of beauty, which messes up getDeclaredClasses. Scala reflection needs getDeclaredClasses to convert between Scala and Java, so the situation looked grim. Greg suggested a workaround described in: https://issues.scala-lang.org/browse/SI-4023?focusedCommentId=54759#comment-54759. Luckily the workaround worked!
| * | | | SI-5498 completes ModuleMirror.instanceEugene Burmako2012-08-072-18/+14
| | | | | | | | | | | | | | | | | | | | | | | | | As per referenced issue, this patch implements `instance` for ModuleMirrors corresponding to nested and inner modules.
* | | | | Merge pull request #1075 from adriaanm/ticket-6040Adriaan Moors2012-08-081-3/+14
|\ \ \ \ \ | | | | | | | | | | | | SI-6040 error on unauthorized extension Dynamic
| * | | | | SI-6040 error on unauthorized extension DynamicAdriaan Moors2012-08-081-3/+14
| | |_|/ / | |/| | | | | | | | | | | | | authorization is easy to get: `import language.dynamics`
* | | | | Merge pull request #1043 from magarciaEPFL/fixes210Adriaan Moors2012-08-081-7/+2
|\ \ \ \ \ | | | | | | | | | | | | updating resolveDups() to use MethodTFA.mutatingInterpret()
| * | | | | updating resolveDups() to use MethodTFA.mutatingInterpret()Miguel Garcia2012-08-021-7/+2
| | |_|_|/ | |/| | |
* | | | | Merge pull request #1084 from VladUreche/issue/5933Adriaan Moors2012-08-081-2/+2
|\ \ \ \ \ | | | | | | | | | | | | SI-5933 do the new patmat translation for scaladoc …
| * | | | | SI-5933 do the new patmat translation for scaladocAdriaan Moors2012-08-071-2/+2
| | |_|/ / | |/| | | | | | | | | | | | | especially because it benefits from nicer type inference for partial functions
* | | | | Merge pull request #1085 from gkossakowski/inline-in-constructorsAdriaan Moors2012-08-071-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Enable inlining in constructors.
| * | | | | Enable inlining in constructors.Grzegorz Kossakowski2012-08-071-1/+1
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Inlining in constructors has been disabled a long time ago due to some VerifyErrors. Unfortunately, @dragos cannot recall what exactly was the problem. I tried to enable inlining in constructors and I didn't see any problem. `Predef.assert` calls in class constructors are one of the biggest contributors to closure allocation in a compiler so we better off get rid of it. Added a test-case that checks if inlining in constructors works properly. Review by @magarciaEPFL and @paulp.
* | | | | Merge pull request #1080 from scalamacros/ticket/6186Josh Suereth2012-08-075-13/+9
|\ \ \ \ \ | | | | | | | | | | | | SI-6186 TypeTags no longer supported in macros
| * | | | | SI-6186 TypeTags no longer supported in macrosEugene Burmako2012-08-075-13/+9
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The original idea was to support both both TypeTags and ConcreteTypeTags as context bounds on macro implementations. Back then TypeTags were the implied default flavor of type tags. Basically because "TypeTag" is shorter than "ConcreteTypeTag" everyone jumped onto them and used them everywhere. That led to problems, because at that time TypeTags could reify unresolved type parameters ("unresolved" = not having TypeTag annotations for them). This led to a series of creepy errors, when one forgets to add a context bound in the middle of a chain of methods that all pass a type tag around, and then suddenly all the tags turn into pumpkins (because that unlucky method just reifies TypeRef(NoPrefix, <type parameter symbol>, Nil and passes it down the chain). Hence we decided to rename ConcreteTypeTag => TypeTag & TypeTag => AbsTypeTag, which makes a lot of sense from a reflection point of view. Unfortunately this broke macros (in a sense), because now everyone writes TypeTag context bounds on macro implementations, which breaks in trivial situations like: "def foo[T](x: T) = identity_macro(x)" (the type of x is not concrete, so macro expansion will emit an error when trying to materialize the corresponding TypeTag). Now we restore the broken balance by banning TypeTag from macro impls. This forces anyone to use AbsTypeTags, and if someone wants to check the input for presence of abstract types, it's possible to do that manually.
* | | | | Merge pull request #1082 from VladUreche/topic/remove-anyref-from-libraryJosh Suereth2012-08-078-16/+18
|\ \ \ \ \ | |/ / / / |/| | | | Removes AnyRef specialization from library
| * | | | Removes AnyRef specialization from libraryVlad Ureche2012-08-078-16/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As discussed in #999, #1025 and https://groups.google.com/forum/?hl=en&fromgroups#!topic/scala-internals/5P5TS9ZWe_w instrumented.jar is generated from the current source, there's no need for a bootstrap commit. Review by @paulp.
* | | | | Merge pull request #1077 from odersky/topic/inlineAdriaan Moors2012-08-071-4/+14
|\ \ \ \ \ | | | | | | | | | | | | Makes all private variables accessed from an @inline method non-private.
| * | | | | Makes all private variables accessed from an @inline method non-private.Martin Odersky2012-08-071-4/+14
| | |_|/ / | |/| | | | | | | | | | | | | inlining across classes requires that accessed variables from @inline methods are not private.
* | | | | Merge pull request #1067 from scalamacros/topic/ultimate-reflection-pull-requestAdriaan Moors2012-08-074-31/+167
|\ \ \ \ \ | | | | | | | | | | | | Ultimate reflection pull request #2
| * | | | | accommodates Martin's commentsEugene Burmako2012-08-072-5/+3
| | | | | |
| * | | | | SI-6199 unit-returning methods now return unitEugene Burmako2012-08-062-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since Scala reflection relies on Java reflection to perform member invocations, it inherits some of the quirks of the underlying platform. One of such quirks is returning null when invoking a void-returning method. This is now fixed by introducing a check after calling invoke.
| * | | | | mirrors now support overriden fields and methodsEugene Burmako2012-08-062-1/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously `checkMemberOf` was blocking base fields and methods that are overriden in receiver.getClass. Now this is fixed. The fix also uncovered an issue with field mirrors. Currently their `get` and `set` methods don't respect overriding and always return field values from a base class. After discussing this on a reflection meeting, we decided that this behavior is desirable and that for overriding people should use reflectMethod and then apply on getters/setters. See the discussion at: https://github.com/scala/scala/pull/1054.
| * | | | | sanity check for reflectConstructorEugene Burmako2012-08-061-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In 911bbc4 I've completely overlooked the fact that reflectConstructor exists and that is also needs sanity checks. Now reflectConstructor checks that the incoming symbol is actually a ctor, and that it is actually a ctor of the class reflected by the current mirror.
| * | | | | SI-6181 method mirrors now support by-name argsEugene Burmako2012-08-061-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Arguments provided in by-name positions are now automatically wrapped in Function0 instances by method mirrors.
| * | | | | SI-6179 mirrors now work with value classesEugene Burmako2012-08-063-34/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mirrors now carry a class tag of the receiver, so that they can detect value classes being reflected upon and adjust accordingly (e.g. allow Int_+ for ints, but disallow it for Integers). Surprisingly enough derived value classes (SIP-15 guys that inherit from AnyVal) have been working all along, so no modification were required to fix them.
| * | | | | SI-6178 reflective invocation of magic symbolsEugene Burmako2012-08-061-16/+94
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Scala there are some methods that only exist in symbol tables, but don't have corresponding method entries in Java class files. To the best of my knowledge, these methods can be subdivided into five groups: 1) stuff weaved onto Any, AnyVal and AnyRef (aka Object), 2) magic methods that Scala exposes to fix Java arrays, 3) magic methods declared on Scala primitive value classes, 4) compile-time methods (such as classOf and all kinds of macros), 5) miscellaneous stuff (currently only String_+). To support these magic symbols, I've modified the `checkMemberOf` validator to special case Any/AnyVal/AnyRef methods and adjusted MethodMirror and ConstructorMirror classes to use special invokers for those instead of relying on Java reflection. Support for value classes will arrive in the subsequent commit, because it requires some unrelated changes to the mirror API (currently mirrors only support AnyRefs as their targets).
* | | | | Merge pull request #1072 from adriaanm/copyrightJosh Suereth2012-08-07409-412/+412
|\ \ \ \ \ | | | | | | | | | | | | update and normalize copyright notice
| * | | | | update and normalize copyright noticeAdriaan Moors2012-08-07409-412/+412
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These are the regexp replacements performed: Sxcala -> Scala Copyright (\d*) LAMP/EPFL -> Copyright $1-2012 LAMP/EPFL Copyright (\d*)-(\d*)(,?) LAMP/EPFL -> Copyright $1-2012 LAMP/EPFL Copyright (\d*)-(\d*) Scala Solutions and LAMP/EPFL -> Copyright $1-2012 Scala Solutions and LAMP/EPFL \(C\) (\d*)-(\d*) LAMP/EPFL -> (C) $1-2012 LAMP/EPFL Copyright \(c\) (\d*)-(\d*)(.*?)EPFL -> Copyright (c) $1-2012$3EPFL The last one was needed for two HTML-ified copyright notices. Here's the summarized diff: Created using ``` git diff -w | grep ^- | sort | uniq | mate git diff -w | grep ^+ | sort | uniq | mate ``` ``` - <div id="footer">Scala programming documentation. Copyright (c) 2003-2011 <a href="http://www.epfl.ch" target="_top">EPFL</a>, with contributions from <a href="http://typesafe.com" target="_top">Typesafe</a>.</div> - copyright.string=Copyright 2002-2011, LAMP/EPFL - <meta name="Copyright" content="(C) 2002-2011 LAMP/EPFL"/> - * Copyright 2002-2011 LAMP/EPFL - * Copyright 2004-2011 LAMP/EPFL - * Copyright 2005 LAMP/EPFL - * Copyright 2005-2011 LAMP/EPFL - * Copyright 2006-2011 LAMP/EPFL - * Copyright 2007 LAMP/EPFL - * Copyright 2007-2011 LAMP/EPFL - * Copyright 2009-2011 Scala Solutions and LAMP/EPFL - * Copyright 2009-2011 Scxala Solutions and LAMP/EPFL - * Copyright 2010-2011 LAMP/EPFL - * Copyright 2012 LAMP/EPFL -# Copyright 2002-2011, LAMP/EPFL -* Copyright 2005-2011 LAMP/EPFL -/* NSC -- new Scala compiler -- Copyright 2007-2011 LAMP/EPFL */ -rem # Copyright 2002-2011, LAMP/EPFL ``` ``` + <div id="footer">Scala programming documentation. Copyright (c) 2003-2012 <a href="http://www.epfl.ch" target="_top">EPFL</a>, with contributions from <a href="http://typesafe.com" target="_top">Typesafe</a>.</div> + copyright.string=Copyright 2002-2012 LAMP/EPFL + <meta name="Copyright" content="(C) 2002-2012 LAMP/EPFL"/> + * Copyright 2002-2012 LAMP/EPFL + * Copyright 2004-2012 LAMP/EPFL + * Copyright 2005-2012 LAMP/EPFL + * Copyright 2006-2012 LAMP/EPFL + * Copyright 2007-2012 LAMP/EPFL + * Copyright 2009-2012 Scala Solutions and LAMP/EPFL + * Copyright 2010-2012 LAMP/EPFL + * Copyright 2011-2012 LAMP/EPFL +# Copyright 2002-2012 LAMP/EPFL +* Copyright 2005-2012 LAMP/EPFL +/* NSC -- new Scala compiler -- Copyright 2007-2012 LAMP/EPFL */ +rem # Copyright 2002-2012 LAMP/EPFL ```
* | | | | Merge pull request #1063 from VladUreche/issue/5788-quickJosh Suereth2012-08-071-12/+19
|\ \ \ \ \ | |_|/ / / |/| | | | SI-5788 Tailcalls LabelDefs correctly duplicated
| * | | | SI-5788 Tailcalls LabelDefs correctly duplicatedVlad Ureche2012-08-061-12/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... in specialization. This is a quick hack to get SI-5788 fixed in 2.10.x. The full patch, which fixes the tailcalls LabelDefs will be merged into trunk, as it's too late for big changes. For reference, the complete fix is: e86afe65c8
* | | | | Merge pull request #1070 from paulp/topic/critical-2.10.xAdriaan Moors2012-08-078-71/+76
|\ \ \ \ \ | | | | | | | | | | | | SI-6063, SI-4945 and restore :warnings in the REPL
| * | | | | Restored :warnings to working order.Paul Phillips2012-08-062-48/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As seen here. scala> class A { @deprecated("foo") def a = 1 } warning: there were 1 deprecation warnings; re-run with -deprecation for details defined class A scala> :warnings <console>:7: warning: @deprecated now takes two arguments; see the scaladoc. class A { @deprecated("foo") def a = 1 } ^ scala> val x = 5 toString warning: there were 1 feature warnings; re-run with -feature for details x: String = 5 scala> :warnings <console>:7: warning: postfix operator toString should be enabled by making the implicit value language.postfixOps visible. This can be achieved by adding the import clause 'import language.postfixOps' or by setting the compiler option -language:postfixOps. See the Scala docs for value scala.language.postfixOps for a discussion why the feature should be explicitly enabled. val x = 5 toString ^
| * | | | | Fix for SI-4945, repl hang on -i input.Paul Phillips2012-08-065-23/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Other breakage had accumulated among Settings. I determined that once upon a time, "MultiStringSetting" accepted arguments like this: scala -foo bip bop bar Somewhere this was changed to force a : argument, like scala -foo:bip,bop,bar This incurs breakage. The repl has always advertised its -i option without a colon and it has always been a MultiStringSetting. Forcing everything into the : seemed like the wrong thing, especially because it will stomp on any whitespace containing arguments, whereas in the original form scala -foo bip "bop bar" baz will yield its arguments as given. So lacking any good ideas and knowing something probably depends on each way already, I made it work both ways.
| * | | | | Fix for SI-6063, broken static forwarders.Paul Phillips2012-08-061-0/+2
| | |/ / / | |/| | | | | | | | | | | | | Have to rule out access boundaries as well as private/protected.
* | | | | Merge pull request #1066 from magarciaEPFL/ticket-SI-6102Adriaan Moors2012-08-071-0/+13
|\ \ \ \ \ | |/ / / / |/| | | | SI-6102 Wrong bytecode in lazyval + no-op finally clause
| * | | | SI-6102 avoid emitting illegal exception table rangeMiguel Garcia2012-08-061-0/+13
| | | | |
* | | | | Merge pull request #1050 from scalamacros/topic/better-error-messagesJosh Suereth2012-08-062-14/+27
|\ \ \ \ \ | | | | | | | | | | | | better error messages for Symbol.asXXX methods
| * | | | | better error messages for Symbol.asXXX methodsEugene Burmako2012-08-062-14/+27
| | | | | |
* | | | | | Merge pull request #1059 from magarciaEPFL/ticket-SI-6188Josh Suereth2012-08-064-2/+23
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | SI-6188