view src/luan/interp/CodeImpl.java @ 120:8d7730a5e3b4

move standalone logic from Java to Luan git-svn-id: https://luan-java.googlecode.com/svn/trunk@121 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Mon, 02 Jun 2014 04:43:45 +0000
parents 64ecb7a3aad7
children
line wrap: on
line source

package luan.interp;

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;
	}
}