summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/reify/codegen/GenSymbols.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2014-01-27 16:00:53 +0300
committerEugene Burmako <xeno.by@gmail.com>2014-02-12 14:53:49 +0100
commit8217c06e4f2b8a6312caa257f9a629dc59979ab7 (patch)
treed08ca7e792cf6926bb4576927f7526a8329f8bfe /src/compiler/scala/reflect/reify/codegen/GenSymbols.scala
parentc34b24a6c4b75a6215bdb8fd8ff94ce869430435 (diff)
downloadscala-8217c06e4f2b8a6312caa257f9a629dc59979ab7.tar.gz
scala-8217c06e4f2b8a6312caa257f9a629dc59979ab7.tar.bz2
scala-8217c06e4f2b8a6312caa257f9a629dc59979ab7.zip
proceeds with the quest of removing `local` from names
Continuing in the direction set by the parent commit, this commit rephrases some more usages of `local` in names and comments in typer.
Diffstat (limited to 'src/compiler/scala/reflect/reify/codegen/GenSymbols.scala')
-rw-r--r--src/compiler/scala/reflect/reify/codegen/GenSymbols.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/reflect/reify/codegen/GenSymbols.scala b/src/compiler/scala/reflect/reify/codegen/GenSymbols.scala
index 3a97089d51..31733da338 100644
--- a/src/compiler/scala/reflect/reify/codegen/GenSymbols.scala
+++ b/src/compiler/scala/reflect/reify/codegen/GenSymbols.scala
@@ -13,7 +13,7 @@ trait GenSymbols {
* Keeps track of auxiliary symbols that are necessary for this reification session.
* These include:
* 1) Free vars (terms, types and existentials),
- * 2) Non-locatable symbols (sometimes, e.g. for RefinedTypes, we need to reify these; to do that we create their local copies in the reificode)
+ * 2) Non-locatable symbols (sometimes, e.g. for RefinedTypes, we need to reify these; to do that we create their copies in the reificode)
* 3) Non-locatable symbols that are referred by #1, #2 and #3
*
* Exposes three main methods:
@@ -90,7 +90,7 @@ trait GenSymbols {
mirrorBuildCall(nme.selectTerm, rowner, rname)
}
} else {
- // todo. make sure that free methods and free local defs work correctly
+ // todo. make sure that free methods work correctly
if (sym.isExistential) reifySymDef(sym)
else if (sym.isTerm) reifyFreeTerm(Ident(sym))
else reifyFreeType(Ident(sym))