comparison core/src/luan/impl/Settable.java @ 652:067d9470184d

compile SetStmt and ForStmt
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 04 Apr 2016 23:26:06 -0600
parents 3dcb0f9bee82
children
comparison
equal deleted inserted replaced
651:140cc5191b7a 652:067d9470184d
1 package luan.impl; 1 package luan.impl;
2 2
3 import luan.LuanException; 3 import luan.LuanException;
4 4
5 5
6 interface Settable { 6 public interface Settable {
7 public void set(LuanStateImpl luan,Object value) throws LuanException; 7 public void set(LuanStateImpl luan,Object value) throws LuanException;
8 } 8 }