Mercurial Hosting > luan
view core/src/luan/impl/CodeImpl.java @ 224:05eb2837ddbf
change LuanTable.put() to not return old value
git-svn-id: https://luan-java.googlecode.com/svn/trunk@225 21e917c8-12df-6dd8-5cb6-c86387c605b9
author | fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9> |
---|---|
date | Mon, 21 Jul 2014 09:27:06 +0000 |
parents | 3dcb0f9bee82 |
children | b48cfa14ba60 |
line wrap: on
line source
package luan.impl; import luan.LuanSource; class CodeImpl implements Code { final LuanSource.Element se; CodeImpl(LuanSource.Element se) { this.se = se; } @Override public final LuanSource.Element se() { return se; } }