Mercurial Hosting > luan
view core/src/luan/impl/Stmt.java @ 580:1e69d9c21461
add Table.clear();
add Http.response.reset();
fix http/run;
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 21 Jul 2015 14:56:41 -0600 |
parents | 3dcb0f9bee82 |
children | 140cc5191b7a |
line wrap: on
line source
package luan.impl; import luan.LuanException; interface Stmt { public void eval(LuanStateImpl luan) throws LuanException; static final Stmt EMPTY = new Stmt() { @Override public void eval(LuanStateImpl luan) {} }; }