diff graal/com.oracle.truffle.object/src/com/oracle/truffle/object/Transition.java @ 18626:ce46f909c176

OM: record replaceProperty transitions
author Andreas Woess <andreas.woess@jku.at>
date Thu, 04 Dec 2014 19:31:45 +0100
parents 073e7f314516
children 19340125f182
line wrap: on
line diff
--- a/graal/com.oracle.truffle.object/src/com/oracle/truffle/object/Transition.java	Thu Dec 04 19:24:14 2014 +0100
+++ b/graal/com.oracle.truffle.object/src/com/oracle/truffle/object/Transition.java	Thu Dec 04 19:31:45 2014 +0100
@@ -133,10 +133,10 @@
         }
     }
 
-    public static final class PropertyTypeTransition extends PropertyTransition {
+    public static final class ReplacePropertyTransition extends PropertyTransition {
         private final Property after;
 
-        public PropertyTypeTransition(Property before, Property after) {
+        public ReplacePropertyTransition(Property before, Property after) {
             super(before);
             this.after = after;
         }