view core/src/luan/StackTraceElement.java @ 554:18504c41b0be

move debug() to Io and remove Debug module; Io.print() now doesn't print newline if there is nothing to be printed;
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 18 Jun 2015 03:30:18 -0600
parents 5d4a78c93383
children f22a09e98b04
line wrap: on
line source

package luan;


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

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