view core/src/luan/impl/ExprImpl.java @ 623:d592bf0947a9

remove "~a" idea
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 07 Jan 2016 03:58:51 -0700
parents e91e476186c7
children 859c0dedc8b6
line wrap: on
line source

package luan.impl;

import luan.LuanElement;


abstract class ExprImpl extends CodeImpl implements Expr {

	ExprImpl(LuanElement el) {
		super(el);
	}
}