Contains standard libraries for ZenCode.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ImmutableLiveObject.zs 285B

12345678910111213
  1. import listeners.DummyListenerHandle;
  2. export class ImmutableLiveObject<T> {
  3. val value as T : get;
  4. public this(value as T) {
  5. this.value = value;
  6. }
  7. public implements LiveObject<T> {
  8. addListener(listener) => new DummyListenerHandle<LiveObject<T>.Listener<T>>(listener);
  9. }
  10. }