Mercurial Hosting > luan
view core/src/luan/LuanProperty.java @ 356:5e34702423a0
better parser error message
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Tue, 14 Apr 2015 09:44:07 -0600 |
| parents | 392105b660d7 |
| children |
line wrap: on
line source
package luan; public abstract class LuanProperty { public abstract Object get(); // return whether handled. if not handled, then this object will be replaced public boolean set(Object value) { return false; } }
