aboutsummaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Add outer parameters in constructor calls.Martin Odersky2014-08-311-6/+6
| | | | | 1) Constructors of inner classes get outer parameters 2) Outer arguments are passed as needed.
* New phase: outerAccessorsMartin Odersky2014-08-311-0/+48
| | | | | | | | The new phase replaces attachOuter. It creates outer accessors where needed but does not yet define outer parameters or pass outer arguments. It should run before pattern matcher, so that pattern matcher can access the outer fields of scrutinees.
* Fixes to erasure to make -Ycheck:all work.Martin Odersky2014-08-283-0/+22
| | | | | | | | Main change: Introduce JavaArrayType as a new type constructor for Java erased array. Translate all methods of Array class during erasure to primitive operations on arrays. Some other small fixes for more localized problems.
* Special context for self constructor argsMartin Odersky2014-08-242-0/+15
| | | | | Arguments to this(...) calls need a special contet, similar to - but different from - the supercall context.
* Check that idents don't assume magic.Martin Odersky2014-08-241-1/+5
| | | | | | In TreeChecker, make sure that every identifier has a type with an elidable prefix. This excludes identifiers pointing to members of random prefixes without making the prefix explicit in the tree as part of a Select node.
* Make ElimByName change owners of by-name parametersMartin Odersky2014-08-181-0/+21
| | | | | | | | | By-name parameters did not have their owner changed before. This was not noticed in treecheck because the method generated for the closure did not have its Method flag set by accident, so owmer checking ignored the new val. Once the Methgod flag was set, owner checking failed. Once changeOwner was added, a whole lot of other things failed, which led to the fixes in the previous commits.
* Split Nullarify functionality to ElimByName, ErasureMartin Odersky2014-08-171-3/+3
| | | | | | | | | | | | | New phase ElimByName elimintaes by-name parameters. All other occurrences of parameterless methods and ExprTypes are eliminated in erasure. The reason for the split like this is that it is very hard for Nullarify to determine when to insert ()'s. The logic for this is fragile because we need to look at previous denotations which might not exist (before splitter) or might result from a merge between parameterless and nullary methods. In Erasure the same is much simpler to achieve.
* Fix and enable RefChecksMartin Odersky2014-08-137-46/+49
| | | | RefChecks is now enabled. Some of the tests had to be fixed to be refchecks-correct.
* Re-enabled checkbounds testsMartin Odersky2014-08-081-2/+2
| | | | | | | | Now that F-bunded types are treated more robustly, we can check bounds for non-emptyness during Typer. This unvealed one wrong test (wonder how that passed scalac?), which got moved to neg.
* Detect cycles and protected legal ones with LazyRefsMartin Odersky2014-08-081-0/+4
| | | | | | | | | | Cycles are now detected early, when an info is first completed. Legal, f-bounded cycles are broken by a LazyRef, which will construct its type lazily. This makes checkBounds validation of AppliedTypeTrees work (in FirstTransform). Formerly, this stackoverflowed despite the laziness precautions in findMember. Todo: Do the same for class files coming from Java and Scala 2.x.
* Enabled variance checkingMartin Odersky2014-08-035-2/+74
| | | | | | | Variance checking is now run as part of type-checking. Fixed tests that exhibited variance errors. Added tests where some classes of variance errors should be detected.
* Added test case for varargs bridgesMartin Odersky2014-08-032-0/+15
| | | | | | Currently we cannot run this test automatically because the testing framework does not know about .java files. It was run manually and verified that ElimRepeated does was it is supposed to do (create a varargs bridge).
* Add test for tailcallDmitry Petrashko2014-07-221-0/+4
| | | | Test for order of type parameters in recursive call
* Merge pull request #149 from dotty-staging/fix/#148Nada Amin2014-07-202-0/+88
|\ | | | | fix/#148
| * fix/148Martin Odersky2014-07-202-0/+88
| | | | | | | | Fixed typo in Splitter. Closes #148.
* | Added test for #143 to regression testsMartin Odersky2014-07-191-0/+0
| |
* | Fixed #143Martin Odersky2014-07-191-0/+14
|/ | | | | The problem was that TermRefWithSignatures did not take shadowed names into account when reconstituting themselves under a new prefix.
* Handle selftypes in FullParameterizationMartin Odersky2014-07-171-0/+6
| | | | Adapt the transformation so that self types are handled correctly.
* Fix to rewire typesMartin Odersky2014-07-173-2/+22
| | | | | | | t6574 has a new test where we produce identical code in an if-then-else. This broke the rewiring logic before, and is fixed now. Also, more comments and test cases.
* Enabled ExtensionMethodsMartin Odersky2014-07-171-0/+109
| | | | | | | | | Fixed extension methods so that it now runs and passes the build. Also enables ElimRepeated, which is a prerequistite for ExtensionMethods. Exception: Tailrec is currently disabled, because it needs to run before ExtensionMethods but it fails the -Ycheck test. Therefore the current tests skip this phase.
* Removed test caseMartin Odersky2014-07-171-17/+0
| | | | | d.T is an access to a structural type member, so rejecting this is OK. Not sure why we compiled this before without warning.
* Added phase: SuperAccessorsMartin Odersky2014-07-171-0/+11
| | | | | Rewrote SuperAccessors (more to be done; see comments), and added stuff here and there to make it work smoother.
* Added test case for LMS inspired HK code.Martin Odersky2014-06-261-0/+43
| | | | Closes #94.
* Avoid caching values that depend on typevar state.Martin Odersky2014-06-201-0/+0
| | | | | | | | | | | | | | TypeVars flip from the initial state, where underlying == origin to the final state where underlying == inst. This flip can invalidate information that depends on the underlying type of a TypeVar. Since we do not know when the flip occurs, we need to avoid keeping any such information in a cache. The commit makes three caches depend on a new value: typerState.ephemeral. The value is set to `true` each time we follow the underlying type of a TypeVar, and this disables cached information to be retained. A test case for this commit is t2693.scala. This test passes typechecking with the previous commit, but fails in -Ycheck:front because of stale cache info in an "#Apply" typeref. The present commit fixes that.
* Fixes to lambda abstractionMartin Odersky2014-06-191-0/+0
| | | | | | 1) Honor variance of Apply and $hkArgs when instantiating them 2) Eta-lifting a higher-kinded type is straight eta expansion, no arguments are applied.
* Handling higher-kinded types with lambdasMartin Odersky2014-06-1813-14/+171
| | | | | Switch to the new scheme where higher-kinded types (and also some polymorphic type aliases) are represented as instances of Lambda traits.
* Change definition of isLegalPrefix so that it allows projecting on an ↵Martin Odersky2014-06-122-0/+21
| | | | | | | | | | | | | | abstract type. This is needed to make the encoding og higher-kinded types work. E.g. Rep[Int] would be represented as Rep { type Arg$0 = Int } # Apply where Apply is an abstract member of the base class Lambfa$I of Rep.
* Avoid classtype checking for refinements.Martin Odersky2014-05-301-0/+22
| | | | | | In a refinement type T { R } we do not need T to be a class. But analyzing the refeinement type will create a temporary class type. This refinement class has to be treated specially in what concerns parent types.
* Simplify result handling in FunProto.Martin Odersky2014-05-301-0/+7
| | | | | | Following the example of SelectionProto, we now always hide the result in a FunProto behind an IgnoreProto. This avoids a special case retry with a weaker FunProto in tryInsertApplyOrImplicit.
* Always ignore type in selectionProtoMartin Odersky2014-05-301-0/+8
| | | | | | | | | | | | | The type of a SelectionProto needs to be ignorable because there might be an implicit conversion on the selection. E.g. implicit def a2b(x: A): B = ??? val x: { a: A } = ??? val b: B = x.a This was previously handled by allowing implicit conversions in compatibility checks. But it turns out we can afford to ignore the type of a selectProto and unignore on ambiguities later.
* Reclassifying testsMartin Odersky2014-05-303-9/+10
|
* Triage of tests t27xx-t29xx.Martin Odersky2014-05-3039-4/+6
|
* tests t26xxMartin Odersky2014-05-3016-0/+286
|
* typedTyped needs to maintain Mode.Martin Odersky2014-05-302-0/+29
| | | | | The first part of a type ascription e: T can be a pattern or an expression. The mode has to be kept depending on what it was on the outside.
* Fix of t2591.Martin Odersky2014-05-301-0/+0
| | | | | | | Needed to wrap a dummyTreeOfType in a TypedSplice to prevent re-typechecking. (In fact, the "tree without pos" check revealed a deeper problem: DummyTrees of types could be typed again, but without the surrounding TypedSplice, the originally stored type would be forgotten and Null would be returned.
* Added t25xx testsMartin Odersky2014-05-306-0/+70
|
* Fix of t2504Martin Odersky2014-05-308-76/+1
| | | | | | | | | Another problem where we need to insert an implicit on the result type of complex operation. Two additions: (1) If adapt fails, we now try with a weaker FunProto without result type, thus allowing for an additional implicit cpmversion on the result. (2) An Application in a committable context will not fail if the result type does not match the expected one. The problem will be simply deferred in that case.
* Fix of pos/t2454Martin Odersky2014-05-3014-0/+0
| | | | "_" type paraeters need to be given fresh names.
* remove test t1591b because it depends on scalac 2 sourceSamuel Gruetter2014-05-201-13/+0
|
* Fix of pos/t2429Martin Odersky2014-05-201-0/+0
| | | | | | | | | | | | | | | | | This was a hard nut to crack. The problem exemplified by t2429 is that in a situation like val x: T = foo(...) where `foo` needs implicit parameters the expected result type `T` is propagated into the typechecking of foo(...) and consequently also into the implicit parameter search. This is often necessary, for instance to instantiate type parameters. But it can lead to overconstrained searches if in fact the right expansion is val x: T = viewToT(foo(...)(implicit params)) where `viewToT` is some implicit conversion. The fix handles that case by re-hecking the application foo(...) with an empty result type, if the implicit parameter search fails. But the re-checking is very subtle as is explained in the comment to `TyperState#tryWithFallback`.
* Nothing is not a superclass of Null.Martin Odersky2014-05-202-0/+35
| | | | | | | | Fix so it isn't. This caused an error in ErrorReporting because we do not propagate bounds into a type like ValOrDefDef[_]. Error in `ErrorReporting` is now fixed but the problem is reflected in test case `boundspropagation`.
* Tests pos/23xx to 24xx.Martin Odersky2014-05-2037-37/+0
|
* Avoid hoisting of local classes out of method bodies.Martin Odersky2014-05-202-2/+42
| | | | | | | | | | Doing so is unsound. We instead approximate local classes by their parents, but only if the expected type is not fully defined. This makes the test t2421_delitedsl1.scala in the commit pass. The oter test, blockEscapesNeg.scala is modified to fail. Previously it failed outright but with the new rules the nested class Bar is approximated to Object. That means that the block containing `Foo.Bar` typechecks, but with type `Object` instead of the unreachable `Bar`.
* More systematic treatment of prototypes.Martin Odersky2014-05-204-0/+7
| | | | | | | | | | | | | | | | | | | There's a delicate balance about how much of a prototype should be passed down the tree when typechecking. Passing little can cause ambiguity errors (both in overloading and in implicit search). Passing too much can cause spurious errors because implicit conversions "down the road" that apply to some tree continaing the result might not be considered. Symptoms of the problems wree that we could not handle the tests included in this commit before. The new scheme is as follows: we always keep all available information in a prototype, but hide nested prototypes behined a `IgnoredProto` wall. These trees will not be considered for conformity checking. When type checking hits an ambiguity, it tries again with a prototype that's one level deeper (has fewer Ignore links) than the previous one. This continues until there are no more Ignore links to unwrap. We also generalize the scheme for wrapping qualifiers of select nodes from realApply to all instances where we compare against a FunProto. Finally, there are some fixes that avoid assertion violations that were provoked by the new typechecking scheme.
* Tests pos 20xx 21xxMartin Odersky2014-05-2026-19/+1
|
* Fix of SI 2133Martin Odersky2014-05-201-0/+18
| | | | We now restrict wildcard imports to members that are accessible at the point of import. This is a fix of an open Scala ticket.
* Pos tests t17xx - t19xxMartin Odersky2014-05-2049-8/+36
|
* More testsMartin Odersky2014-05-1259-283/+32
|
* Re-enable t0786.Martin Odersky2014-05-081-0/+0
| | | | t0786 works again after type inference fixes. Re-enabling.
* Fixing tailrec test.Martin Odersky2014-05-081-1/+1
| | | | | null is not a subtype of a singleton type in Dotty. This slipped by the type checker before. With the tightened rules in the next commits, it will become illegal.