summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-10-10 15:51:59 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-10-10 15:51:59 +0000
commit90948bf331de457c83c1c625ade401e79861a1c5 (patch)
tree32e2a955da615519e7ebf5f65ed5f1db1608a149
parent1da91ff38fc3e4a9fc6fc9552d9a844b6cb0f381 (diff)
downloadscala-90948bf331de457c83c1c625ade401e79861a1c5.tar.gz
scala-90948bf331de457c83c1c625ade401e79861a1c5.tar.bz2
scala-90948bf331de457c83c1c625ade401e79861a1c5.zip
Changes the name of 'the BytecodeGenerators' cl...
Changes the name of 'the BytecodeGenerators' class to 'GenJVM' so as to have the same name as the file it resides in.
-rwxr-xr-xsources/scala/tools/nsc/Global.scala4
-rw-r--r--sources/scala/tools/nsc/backend/jvm/GenJVM.scala2
2 files changed, 3 insertions, 3 deletions
diff --git a/sources/scala/tools/nsc/Global.scala b/sources/scala/tools/nsc/Global.scala
index 6ec822c0cc..58666f0f5f 100755
--- a/sources/scala/tools/nsc/Global.scala
+++ b/sources/scala/tools/nsc/Global.scala
@@ -20,7 +20,7 @@ import matching.TransMatcher;
import transform._;
import backend.icode.{ICodes, GenICode, Checkers};
import backend.ScalaPrimitives;
-import backend.jvm.BytecodeGenerators;
+import backend.jvm.GenJVM;
class Global(val settings: Settings, val reporter: Reporter) extends SymbolTable
with Trees
@@ -236,7 +236,7 @@ class Global(val settings: Settings, val reporter: Reporter) extends SymbolTable
val global: Global.this.type = Global.this;
}
- object genJVM extends BytecodeGenerators {
+ object genJVM extends GenJVM {
val global: Global.this.type = Global.this;
}
diff --git a/sources/scala/tools/nsc/backend/jvm/GenJVM.scala b/sources/scala/tools/nsc/backend/jvm/GenJVM.scala
index ffb0b7a2a8..dd06a6e6fd 100644
--- a/sources/scala/tools/nsc/backend/jvm/GenJVM.scala
+++ b/sources/scala/tools/nsc/backend/jvm/GenJVM.scala
@@ -16,7 +16,7 @@ import ch.epfl.lamp.fjbg._;
/**
*/
-abstract class BytecodeGenerators extends SubComponent {
+abstract class GenJVM extends SubComponent {
import global._;
import icodes._;
import icodes.opcodes._;