comparison src/luan/Luan.java @ 1561:e1a13e707bf3

start immutable
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 05 Nov 2020 20:24:09 -0700
parents 465b4a0dae4a
children b89212fd04b5
comparison
equal deleted inserted replaced
1560:33a53c43e2f7 1561:e1a13e707bf3
40 Luan clone = (Luan)dc; 40 Luan clone = (Luan)dc;
41 clone.registry = cloner.clone(registry); 41 clone.registry = cloner.clone(registry);
42 if( cloner.type == LuanCloner.Type.INCREMENTAL ) 42 if( cloner.type == LuanCloner.Type.INCREMENTAL )
43 isLocked = true; 43 isLocked = true;
44 } 44 }
45
46 @Override public void makeImmutable(LuanImmutabler immutabler) {}
45 47
46 public LuanClosure peek() { 48 public LuanClosure peek() {
47 return peek(1); 49 return peek(1);
48 } 50 }
49 51