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.
12345678910111213 |
- import listeners.DummyListenerHandle;
-
- export class ImmutableLiveObject<T> {
- val value as T : get;
-
- public this(value as T) {
- this.value = value;
- }
-
- public implements LiveObject<T> {
- addListener(listener) => new DummyListenerHandle<LiveObject<T>.Listener<T>>(listener);
- }
- }
|