summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2007-02-21 19:10:41 +0000
committerMartin Odersky <odersky@gmail.com>2007-02-21 19:10:41 +0000
commit914932babf9343fdfcec20f25bfb1576dc8c433b (patch)
tree088e404a21862209be434b0236c34e4576042c51 /src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
parentcb7f66a22c9167a7e8ffce042a4bf1c5c9849a89 (diff)
downloadscala-914932babf9343fdfcec20f25bfb1576dc8c433b.tar.gz
scala-914932babf9343fdfcec20f25bfb1576dc8c433b.tar.bz2
scala-914932babf9343fdfcec20f25bfb1576dc8c433b.zip
Removed Pair(...), Triple(...).
Diffstat (limited to 'src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
index e36c40cfc0..40012423a9 100644
--- a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
+++ b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
@@ -193,7 +193,7 @@ abstract class ClassfileParser {
in.buf(start) != CONSTANT_METHODREF &&
in.buf(start) != CONSTANT_INTFMETHODREF) errorBadTag(start)
val ownerTpe = getClassOrArrayType(in.getChar(start + 1))
- val Pair(name, tpe) = getNameAndType(in.getChar(start + 3), ownerTpe)
+ val (name, tpe) = getNameAndType(in.getChar(start + 3), ownerTpe)
if (name == nme.MODULE_INSTANCE_FIELD) {
val index = in.getChar(start + 1)
val name = getExternalName(in.getChar(starts(index) + 1))
@@ -217,9 +217,9 @@ abstract class ClassfileParser {
f
}
- def getNameAndType(index: Int, ownerTpe: Type): Pair[Name, Type] = {
+ def getNameAndType(index: Int, ownerTpe: Type): (Name, Type) = {
if (index <= 0 || len <= index) errorBadIndex(index)
- var p = values(index).asInstanceOf[Pair[Name, Type]]
+ var p = values(index).asInstanceOf[(Name, Type)]
if (p eq null) {
val start = starts(index)
if (in.buf(start) != CONSTANT_NAMEANDTYPE) errorBadTag(start)
@@ -232,7 +232,7 @@ abstract class ClassfileParser {
tpe = MethodType(formals, ownerTpe)
}
- p = Pair(name, tpe)
+ p = (name, tpe)
}
p
}
@@ -697,10 +697,10 @@ abstract class ClassfileParser {
val attrNameIndex = in.nextChar
val attrType = pool.getType(attrNameIndex)
val nargs = in.nextChar
- val nvpairs = new ListBuffer[Pair[Name,Constant]]
+ val nvpairs = new ListBuffer[(Name,Constant)]
for (val i <- 0 until nargs) {
val name = pool.getName(in.nextChar)
- nvpairs += Pair(name, parseTaggedConstant())
+ nvpairs += (name, parseTaggedConstant())
}
sym.attributes = AttrInfo(attrType, List(), nvpairs.toList) :: sym.attributes
}