aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/ast/Trees.scala
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/ast/Trees.scala
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/ast/Trees.scala')
-rw-r--r--src/dotty/tools/dotc/ast/Trees.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/ast/Trees.scala b/src/dotty/tools/dotc/ast/Trees.scala
index dca66a01d..4c63a67ce 100644
--- a/src/dotty/tools/dotc/ast/Trees.scala
+++ b/src/dotty/tools/dotc/ast/Trees.scala
@@ -502,7 +502,9 @@ object Trees {
/** A tree representing inlined code.
*
- * @param call The original call that was inlined
+ * @param call Info about the original call that was inlined
+ * Until PostTyper, this is the full call, afterwards only
+ * a reference to the toplevel class from which the call was inlined.
* @param bindings Bindings for proxies to be used in the inlined code
* @param expansion The inlined tree, minus bindings.
*