aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/transform
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-10-18 00:23:15 +0200
committerMartin Odersky <odersky@gmail.com>2016-10-18 00:23:15 +0200
commitfc6b8fba13a4ac1823763410568a48e46e4b2192 (patch)
treeaf69416baf7da4f441fcc5600c0d9aca304b3f95 /src/dotty/tools/dotc/transform
parent68608986741a3b32e2b1a328466e15ec0e7ab5b8 (diff)
downloaddotty-fc6b8fba13a4ac1823763410568a48e46e4b2192.tar.gz
dotty-fc6b8fba13a4ac1823763410568a48e46e4b2192.tar.bz2
dotty-fc6b8fba13a4ac1823763410568a48e46e4b2192.zip
Mention Inlined transformation in docs
Diffstat (limited to 'src/dotty/tools/dotc/transform')
-rw-r--r--src/dotty/tools/dotc/transform/PostTyper.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dotty/tools/dotc/transform/PostTyper.scala b/src/dotty/tools/dotc/transform/PostTyper.scala
index fe542ca0a..e4447509b 100644
--- a/src/dotty/tools/dotc/transform/PostTyper.scala
+++ b/src/dotty/tools/dotc/transform/PostTyper.scala
@@ -41,6 +41,9 @@ import Symbols._, TypeUtils._
*
* (10) Adds Child annotations to all sealed classes
*
+ * (11) Minimizes `call` fields of `Inline` nodes to just point to the toplevel
+ * class from which code was inlined.
+ *
* The reason for making this a macro transform is that some functions (in particular
* super and protected accessors and instantiation checks) are naturally top-down and
* don't lend themselves to the bottom-up approach of a mini phase. The other two functions