summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-05-19 13:47:04 +0000
committerburaq <buraq@epfl.ch>2004-05-19 13:47:04 +0000
commit7de863e85cb889c93e8b8e1dffd0297e2757f940 (patch)
tree94098d571f6a2f7c5b093b7d55a6a97ccbad0d45
parent14c64d8e1027d9c44d42329baf08ff1efef1a3c4 (diff)
downloadscala-7de863e85cb889c93e8b8e1dffd0297e2757f940.tar.gz
scala-7de863e85cb889c93e8b8e1dffd0297e2757f940.tar.bz2
scala-7de863e85cb889c93e8b8e1dffd0297e2757f940.zip
fix
-rw-r--r--sources/scala/tools/scalac/transformer/matching/MutableGrammar.scala22
1 files changed, 11 insertions, 11 deletions
diff --git a/sources/scala/tools/scalac/transformer/matching/MutableGrammar.scala b/sources/scala/tools/scalac/transformer/matching/MutableGrammar.scala
index 1ec9a6b30d..d8c20a3218 100644
--- a/sources/scala/tools/scalac/transformer/matching/MutableGrammar.scala
+++ b/sources/scala/tools/scalac/transformer/matching/MutableGrammar.scala
@@ -47,7 +47,7 @@ case class MutableGrammar( treeRules:mutable.Set[TRule],
final def hedgeRulesToString:String = {
hedgeRules.foldLeft ("") {
(s:String,r:Rule) => s + (r match {
- case HedgeRule( h, _ ) if ( make.hedgeInitials contains h ) => "*"
+ case HedgeRule( h, _, _ ) if ( make.hedgeInitials contains h ) => "*"
case _ => " "
}) + r.toString() + "\n"
} ;
@@ -56,7 +56,7 @@ case class MutableGrammar( treeRules:mutable.Set[TRule],
final def treeRulesToString:String = {
treeRules.foldLeft ("") {
(s:String,r:Rule) => s + (r match {
- case TreeRule( t, _ ) if ( make.treeInitials contains t ) => "*"
+ case TreeRule( t, _, _ ) if ( make.treeInitials contains t ) => "*"
case _ => " "
}) + r.toString() + "\n"
} ;
@@ -76,10 +76,10 @@ case class MutableGrammar( treeRules:mutable.Set[TRule],
sb.toString()
}
- protected def add( i:Int, r:Rule, m:immutable.TreeMap[Int,immutable.Set[Rule]] ) =
+ protected def add[A]( i:Int, r:A, m:immutable.TreeMap[Int,immutable.Set[A]] ):immutable.TreeMap[Int,immutable.Set[A]] =
m.update( i, m.get( i ) match {
case Some( s ) => s + r;
- case None => immutable.ListSet.Empty[Rule] + r;
+ case None => immutable.ListSet.Empty[A] + r;
});
@@ -87,25 +87,25 @@ case class MutableGrammar( treeRules:mutable.Set[TRule],
/** converts this grammar in a immutable grammar
*/
def toGrammar:Grammar = {
- val treeTransitions:immutable.TreeMap[Int,immutable.Set[Rule]] = {
+ val treeTransitions:immutable.TreeMap[Int,immutable.Set[TRule]] = {
var tmp =
- immutable.TreeMap.Empty[Int,immutable.Set[Rule]];
+ immutable.TreeMap.Empty[Int,immutable.Set[TRule]];
treeRules.foreach { treeRule => treeRule match {
case AnyTreeRule( t ) => tmp = add( t.i, treeRule, tmp );
case AnyNodeRule( t, _ ) => tmp = add( t.i, treeRule, tmp )
- case TreeRule( t, _ ) => tmp = add( t.i, treeRule, tmp )
+ case TreeRule( t, _, _ ) => tmp = add( t.i, treeRule, tmp )
}};
tmp
};
- val hedgeTransitions:immutable.TreeMap[Int,immutable.Set[Rule]] = {
+ val hedgeTransitions:immutable.TreeMap[Int,immutable.Set[HRule]] = {
var tmp =
- immutable.TreeMap.Empty[Int,immutable.Set[Rule]];
+ immutable.TreeMap.Empty[Int,immutable.Set[HRule]];
hedgeRules.foreach { hedgeRule => hedgeRule match {
- case HedgeRule( h, _ ) => tmp = add( h.i, hedgeRule, tmp );
+ case HedgeRule( h, _, _ ) => tmp = add( h.i, hedgeRule, tmp );
case HedgeChainRule( h, _ ) => tmp = add( h.i, hedgeRule, tmp );
}};
// to maintain assumption that every hedge nt is present
- tmp.update( 0, immutable.ListSet.Empty[Rule] );
+ tmp.update( 0, immutable.ListSet.Empty[HRule] );
};
val theCaseVars = new Array[Int]( caseVars.size );
for( val k <- caseVars.keys ) {