view core/src/luan/StackTraceElement.java @ 593:92c9fa5e39e6

remove theme "Get" and "Set", and add "define"
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 31 Aug 2015 10:16:57 -0600
parents f22a09e98b04
children
line wrap: on
line source

package luan;


public final class StackTraceElement {
	final LuanElement call;
	final String fnName;

	public StackTraceElement(LuanElement call,String fnName) {
		this.call = call;
		this.fnName = fnName;
	}
}