summaryrefslogtreecommitdiff
path: root/test/files/run/idempotency-lazy-vals.scala
Commit message (Collapse)AuthorAgeFilesLines
* deprecates resetAllAttrs and resetLocalAttrs in favor of the new APIEugene Burmako2014-01-211-1/+1
| | | | | | | | | | We now have c.untypecheck, which is supposed to be a counterpart of c.typecheck in the sense that it goes back from typed trees to untyped ones: http://stackoverflow.com/questions/20936509/scala-macros-what-is-the-difference-between-typed-aka-typechecked-an-untyped. Let’s hope that c.untypecheck will soon be able to solve our problems with partially/incorrectly attributed trees emitted by macros: https://groups.google.com/forum/#!topic/scala-internals/TtCTPlj_qcQ.
* typeCheck => typecheckEugene Burmako2013-12-101-1/+1
| | | | | This method has always been slightly bothering me, so I was really glad when Denys asked me to rename it. Let’s see how it pans out.
* tests for idempotency issues in the typecheckerEugene Burmako2012-12-041-0/+27
For more details see https://issues.scala-lang.org/browse/SI-5464. Check files are intentionally very precise, so that we can monitor how the situation changes over time.