comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/FrameSlotNode.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents 31da1716950f
children 07f8d136a05e
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
32 this.slot = slot; 32 this.slot = slot;
33 slot.registerOneShotTypeListener(this); 33 slot.registerOneShotTypeListener(this);
34 } 34 }
35 35
36 @Override 36 @Override
37 public void typeChanged(FrameSlot changedSlot, Class< ? > oldType) { 37 public void typeChanged(FrameSlot changedSlot, Class<?> oldType) {
38 if (getParent() != null) { 38 if (getParent() != null) {
39 replace(specialize(changedSlot.getType())); 39 replace(specialize(changedSlot.getType()));
40 } 40 }
41 } 41 }
42 42
43 protected abstract FrameSlotNode specialize(Class< ? > clazz); 43 protected abstract FrameSlotNode specialize(Class<?> clazz);
44 } 44 }