view core/src/luan/impl/UnaryOpExpr.java @ 645:859c0dedc8b6

remove LuanSource
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 29 Mar 2016 18:09:51 -0600
parents b48cfa14ba60
children
line wrap: on
line source

package luan.impl;


abstract class UnaryOpExpr extends CodeImpl implements Expr {
	final Expr op;

	UnaryOpExpr(Expr op) {
		this.op = op;
	}
}