comparison core/src/luan/Luan.java @ 221:ec016471c6eb

make LuanTable an interface git-svn-id: https://luan-java.googlecode.com/svn/trunk@222 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 17 Jul 2014 07:49:26 +0000
parents 27abb3746917
children 392105b660d7
comparison
equal deleted inserted replaced
220:61afe2a1ce96 221:ec016471c6eb
143 if( obj instanceof LuanRepr ) 143 if( obj instanceof LuanRepr )
144 return ((LuanRepr)obj).repr(); 144 return ((LuanRepr)obj).repr();
145 return null; 145 return null;
146 } 146 }
147 147
148 public static LuanTable newTable() {
149 return new LuanTableImpl();
150 }
151
148 private Luan() {} // never 152 private Luan() {} // never
149 } 153 }