view core/src/luan/impl/UnaryOpExpr.java @ 498:ee55be414a34

Http.response is now mostly luan
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 18 May 2015 00:25:35 -0600
parents b48cfa14ba60
children 859c0dedc8b6
line wrap: on
line source

package luan.impl;

import luan.LuanElement;


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

	UnaryOpExpr(LuanElement se,Expr op) {
		super(se);
		this.op = op;
	}
}