view src/luan/impl/CodeImpl.java @ 166:4eaee12f6c65

move luan/interp to impl git-svn-id: https://luan-java.googlecode.com/svn/trunk@167 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Sun, 22 Jun 2014 04:17:38 +0000
parents src/luan/interp/CodeImpl.java@64ecb7a3aad7
children
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;
	}
}