comparison src/luan/interp/UpValue.java @ 73:f86e4f77ef32

add package module git-svn-id: https://luan-java.googlecode.com/svn/trunk@74 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Tue, 12 Feb 2013 09:46:45 +0000
parents 8ede219cd111
children 4bf3d0c0b6b9
comparison
equal deleted inserted replaced
72:cd9dbd7477ca 73:f86e4f77ef32
63 } 63 }
64 } 64 }
65 65
66 static final Getter globalGetter = new Getter() { 66 static final Getter globalGetter = new Getter() {
67 public UpValue get(LuanStateImpl luan) { 67 public UpValue get(LuanStateImpl luan) {
68 return new UpValue(luan.global()); 68 return new UpValue(luan.global);
69 } 69 }
70 }; 70 };
71 71
72 } 72 }